new testcase which crashes the inliner, thanks Bugpoint!
[oota-llvm.git] / test / ExecutionEngine / test-logical.ll
1
2 int %main() {
3         %A = and sbyte 4, 8
4         %B = or sbyte %A, 7
5         %C = xor sbyte %B, %A
6
7         %A = and short 4, 8
8         %B = or short %A, 7
9         %C = xor short %B, %A
10
11         %A = and int 4, 8
12         %B = or int %A, 7
13         %C = xor int %B, %A
14
15         %A = and long 4, 8
16         %B = or long %A, 7
17         %C = xor long %B, %A
18
19         ret int 0
20 }