X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FInteger%2Fglobalvars_bt.ll;h=5c43185574d6ea47ae75d7644a19b97022e13a97;hb=a6fb5b54f3a35fdefbb03b9c7be4c6d6d53cdd35;hp=29471ab6c6176ec5e507e0d7a201882068212a39;hpb=c0948366f6cbec12d2c87f9cb4a1cea1435cf02a;p=oota-llvm.git diff --git a/test/Integer/globalvars_bt.ll b/test/Integer/globalvars_bt.ll index 29471ab6c61..5c43185574d 100644 --- a/test/Integer/globalvars_bt.ll +++ b/test/Integer/globalvars_bt.ll @@ -1,26 +1,25 @@ ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -; XFAIL: * -%MyVar = external global i27 -%MyIntList = external global { \2 *, i27 } + +@MyVar = external global i27 +@MyIntList = external global { \2 *, i27 } external global i27 ; i27*:0 -%AConst = constant i27 123 +@AConst = constant i27 123 -%AString = constant [4 x i8] c"test" +@AString = constant [4 x i8] c"test" -%ZeroInit = global { [100 x i27 ], [40 x float ] } { [100 x i27] zeroinitializer, +@ZeroInit = global { [100 x i27 ], [40 x float ] } { [100 x i27] zeroinitializer, [40 x float] zeroinitializer } -implementation -define i27 "foo"(i27 %blah) +define i27 @"foo"(i27 %blah) begin - store i27 5, i27 *%MyVar - %idx = getelementptr { \2 *, i27 } * %MyIntList, i64 0, i27 1 + store i27 5, i27 *@MyVar + %idx = getelementptr { \2 *, i27 } * @MyIntList, i64 0, i32 1 store i27 12, i27* %idx ret i27 %blah end