summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/select.ll
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-22 06:18:35 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-22 06:18:35 +0000
commit3d55eda9da33a4f5dc79a4d1697d5812311e2bb7 (patch)
tree8e2eb804ea68f28b3516ec505aaef3d4d8c61967 /test/CodeGen/Generic/select.ll
parent2dd3e1b435fb16f72d4bc671e67db68f55abb2c7 (diff)
downloadllvm-3d55eda9da33a4f5dc79a4d1697d5812311e2bb7.tar.gz
llvm-3d55eda9da33a4f5dc79a4d1697d5812311e2bb7.tar.bz2
llvm-3d55eda9da33a4f5dc79a4d1697d5812311e2bb7.tar.xz
Unbreak this test case - llvm-as no longer tolerates redefining names in any
given type plane. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic/select.ll')
-rw-r--r--test/CodeGen/Generic/select.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Generic/select.ll b/test/CodeGen/Generic/select.ll
index c3f53b5523..e7b5fddc17 100644
--- a/test/CodeGen/Generic/select.ll
+++ b/test/CodeGen/Generic/select.ll
@@ -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
+ %i = 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