blob: 944d51e799f3706b369b35006ddb7e51d47b9f70 [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
Reid Spencer73a7d892007-02-04 02:11:13 +00005declare void @"foo"(i31 %i, i33 %j)
Reid Spencerc0948362007-01-16 18:08:22 +00006
7implementation
8
9; foo test basic bitwise operations
Reid Spencere3ff5ad2007-01-26 08:25:06 +000010define void @"foo"(i31 %i, i33 %j)
Reid Spencerc0948362007-01-16 18:08:22 +000011begin
12 %t1 = trunc i33 %j to i31
13 %t2 = and i31 %t1, %i
14 %t3 = sext i31 %i to i33
15 %t4 = or i33 %t3, %j
16 %t5 = xor i31 %t2, 7
Reid Spencer832254e2007-02-02 02:16:23 +000017 %t6 = shl i31 %i, 2
Reid Spencerc0948362007-01-16 18:08:22 +000018 %t7 = trunc i31 %i to i8
Reid Spencer832254e2007-02-02 02:16:23 +000019 %t8 = shl i8 %t7, 3
20 %t9 = lshr i33 %j, 31
21 %t7z = zext i8 %t7 to i33
22 %t10 = ashr i33 %j, %t7z
Reid Spencerc0948362007-01-16 18:08:22 +000023 ret void
24end
25