Use InstrSlots::NUM rather than pre-dividing by four. Also, mark this const.
[oota-llvm.git] / test / Integer / BitMisc.ll
index 1aaf62444d02459ff10bfbca32a6d265d90d840d..8ce4d4add7dcb4c8cc89170b1017d37b1f0cb2c5 100644 (file)
@@ -3,23 +3,22 @@
 ; RUN: diff %t1.ll %t2.ll
 
 
-%MyVar     = external global i19
-%MyIntList = external global { i39 *, i19 }
+@MyVar     = external global i19
+@MyIntList = external global { i39 *, i19 }
              external global i19      ; i19*:0
 
-%AConst    = constant i19 -123
+@AConst    = constant i19 -123
 
-%AString   = constant [4 x i8] c"test"
+@AString   = constant [4 x i8] c"test"
 
-%ZeroInit  = global { [100 x i19 ], [40 x float ] } { [100 x i19] zeroinitializer,
+@ZeroInit  = global { [100 x i19 ], [40 x float ] } { [100 x i19] zeroinitializer,
                                                       [40  x float] zeroinitializer }
 
-implementation
 
-define i19 "foo"(i19 %blah)
+define i19 @"foo"(i19 %blah)
 begin
-       store i19 5, i19 *%MyVar
-       %idx = getelementptr { i39 *, i19 } * %MyIntList, i64 0, i32 1
+       store i19 5, i19* @MyVar
+       %idx = getelementptr { i39 *, i19 } * @MyIntList, i64 0, i32 1
        store i19 12, i19* %idx
        ret i19 %blah
 end