[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / 2003-01-09-SARTest.ll
blob6e38dbc302e5a7f4a19d1f828b97c140c1f2c36a
1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
4 ; We were accidentally inverting the signedness of right shifts.  Whoops.
6 define i32 @main() {
7         %X = ashr i32 -1, 16            ; <i32> [#uses=1]
8         %Y = ashr i32 %X, 16            ; <i32> [#uses=1]
9         %Z = add i32 %Y, 1              ; <i32> [#uses=1]
10         ret i32 %Z