blob: 02969bc9312c1e9c5d232f5057426d4fb865ca83 [file] [log] [blame]
Reid Spencerc0948362007-01-16 18:08:22 +00001; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
5
6
7declare void "foo"(i31 %i, i17 %j)
8
9implementation
10
11; foo test basic bitwise operations
12define void "foo"(i31 %i, i33 %j)
13begin
14 %t1 = trunc i33 %j to i31
15 %t2 = and i31 %t1, %i
16 %t3 = sext i31 %i to i33
17 %t4 = or i33 %t3, %j
18 %t5 = xor i31 %t2, 7
19 %t6 = shl i31 %i, i8 2
20 %t7 = trunc i31 %i to i8
21 %t8 = shl i8 %t7, i8 3
22 %t9 = lshr i33 %j, i8 31
23 %t10 = ashr i33 %j, i8 %t7
24 ret void
25end
26