Tanya Lattner | e9789ef | 2004-11-06 23:32:43 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as -f %s -o %t.bc |
2 | ; RUN: lli %t.bc > /dev/null | ||||
3 | |||||
Chris Lattner | 4a8068f | 2003-01-13 01:03:16 +0000 | [diff] [blame] | 4 | ; We were accidentally inverting the signedness of right shifts. Whoops. |
5 | |||||
6 | int %main() { | ||||
7 | %X = shr int -1, ubyte 16 | ||||
8 | %Y = shr int %X, ubyte 16 | ||||
9 | %Z = add int %Y, 1 | ||||
10 | ret int %Z | ||||
11 | } |