Prepare for PR411
[oota-llvm.git] / test / Integer / BitMem.ll
1 ; 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 declare void @"foo"()
6
7 implementation
8
9 ; foo test basic arith operations
10 define void @"foo"() {
11         %t1 = malloc i31, i32 4
12         %t2 = malloc i31, i32 7, align 1024
13         %t3 = malloc [4 x i15]
14
15         %idx = getelementptr [4 x i15]* %t3, i64 0, i64 2
16         store i15 -123, i15* %idx
17
18         free [4 x i15]* %t3
19         free i31* %t2
20         free i31* %t1
21         
22         %t4 = alloca i12, i32 100
23         free i12* %t4
24
25         %t5 = alloca i31
26         store i31 -123, i31* %t5
27
28         free i31* %t5
29         ret void
30 }