Unbreak this test case - llvm-as no longer tolerates redefining names in any
authorBrian Gaeke <gaeke@uiuc.edu>
Sat, 22 Nov 2003 06:18:35 +0000 (06:18 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Sat, 22 Nov 2003 06:18:35 +0000 (06:18 +0000)
given type plane.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10169 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/select.ll
test/LLC/select.ll

index c3f53b5523a38e9bbede2529bb2c3dd554d289e0..e7b5fddc172009f5404b9023b178d5665b07d32a 100644 (file)
@@ -10,15 +10,15 @@ void "testConsts"(int %N, float %X)
 begin
 ; <label>:0
        %a = add int %N, 1              ; 1 should be put in immed field
-       %a2= add int %N, 12345678       ; constant has to be loaded
+       %= add int %N, 12345678       ; constant has to be loaded
        %b = add short 4, 3             ; one of the operands shd be immed
        %c = add float %X, 0.0          ; will this be optimzzed?
        %d = add float %X, 3.1415       ; constant has to be loaded
        %f = add uint 4294967295, 10    ; result shd be  9   (not in immed fld)
        %g = add ushort 20, 65535       ; result shd be 19 (65536 in immed fld)
-       %g = add ushort 65535, 30       ; result shd be 29   (not in immed fld)
+       %j = add ushort 65535, 30       ; result shd be 29   (not in immed fld)
        %h = add ubyte  40, 255         ; result shd be 39   (255 in immed fld)
-       %h = add ubyte  255, 50         ; result shd be 49   (not in immed fld)
+       %k = add ubyte  255, 50         ; result shd be 49   (not in immed fld)
        
        ret void
 end
index c3f53b5523a38e9bbede2529bb2c3dd554d289e0..e7b5fddc172009f5404b9023b178d5665b07d32a 100644 (file)
@@ -10,15 +10,15 @@ void "testConsts"(int %N, float %X)
 begin
 ; <label>:0
        %a = add int %N, 1              ; 1 should be put in immed field
-       %a2= add int %N, 12345678       ; constant has to be loaded
+       %= add int %N, 12345678       ; constant has to be loaded
        %b = add short 4, 3             ; one of the operands shd be immed
        %c = add float %X, 0.0          ; will this be optimzzed?
        %d = add float %X, 3.1415       ; constant has to be loaded
        %f = add uint 4294967295, 10    ; result shd be  9   (not in immed fld)
        %g = add ushort 20, 65535       ; result shd be 19 (65536 in immed fld)
-       %g = add ushort 65535, 30       ; result shd be 29   (not in immed fld)
+       %j = add ushort 65535, 30       ; result shd be 29   (not in immed fld)
        %h = add ubyte  40, 255         ; result shd be 39   (255 in immed fld)
-       %h = add ubyte  255, 50         ; result shd be 49   (not in immed fld)
+       %k = add ubyte  255, 50         ; result shd be 49   (not in immed fld)
        
        ret void
 end