summaryrefslogtreecommitdiffstats
path: root/llvm
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
commit8581a625df9ac34e67f92aebb14ca8a91768866d (patch)
tree25c1775a232b6f36925d041d6eb504545d300309 /llvm
parente42b8fd298d4781b5e61215019313e27216baa0a (diff)
downloadbcm5719-llvm-8581a625df9ac34e67f92aebb14ca8a91768866d.tar.gz
bcm5719-llvm-8581a625df9ac34e67f92aebb14ca8a91768866d.zip
Unbreak this test case - llvm-as no longer tolerates redefining names in any
given type plane. llvm-svn: 10169
Diffstat (limited to 'llvm')
-rw-r--r--llvm/test/Regression/LLC/select.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Regression/LLC/select.ll b/llvm/test/Regression/LLC/select.ll
index c3f53b5523a..e7b5fddc172 100644
--- a/llvm/test/Regression/LLC/select.ll
+++ b/llvm/test/Regression/LLC/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
OpenPOWER on IntegriCloud