zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / Integer / BitMisc.ll
blob8ce4d4add7dcb4c8cc89170b1017d37b1f0cb2c5
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
6 @MyVar     = external global i19
7 @MyIntList = external global { i39 *, i19 }
8              external global i19      ; i19*:0
10 @AConst    = constant i19 -123
12 @AString   = constant [4 x i8] c"test"
14 @ZeroInit  = global { [100 x i19 ], [40 x float ] } { [100 x i19] zeroinitializer,
15                                                       [40  x float] zeroinitializer }
18 define i19 @"foo"(i19 %blah)
19 begin
20         store i19 5, i19* @MyVar
21         %idx = getelementptr { i39 *, i19 } * @MyIntList, i64 0, i32 1
22         store i19 12, i19* %idx
23         ret i19 %blah
24 end