Fix testcases to handle new syntax for construction and initializeation
[oota-llvm.git] / test / Feature / globalvars.ll
1
2 %MyVar     = uninitialized global int
3 %MyIntList = uninitialized global { \2 *, int }
4              uninitialized global int      ; int*:0
5
6 %AConst    = constant int 123
7
8 implementation
9
10 int "foo"(int %blah)
11 begin
12         store int 5, int *%MyVar
13         store int 12, { \2 *, int } * %MyIntList, ubyte 1
14         ret int %blah
15 end
16