summaryrefslogtreecommitdiff
path: root/test/Integer/globalvars_bt.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Integer/globalvars_bt.ll')
-rw-r--r--test/Integer/globalvars_bt.ll16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Integer/globalvars_bt.ll b/test/Integer/globalvars_bt.ll
index b8df1b81e1..702f57edcb 100644
--- a/test/Integer/globalvars_bt.ll
+++ b/test/Integer/globalvars_bt.ll
@@ -4,23 +4,23 @@
-%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, i32 1
+ store i27 5, i27 *@MyVar
+ %idx = getelementptr { \2 *, i27 } * @MyIntList, i64 0, i32 1
store i27 12, i27* %idx
ret i27 %blah
end