summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/select.ll
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-09-05 17:50:36 +0000
committerDale Johannesen <dalej@apple.com>2007-09-05 17:50:36 +0000
commitc2ec2baf3d4de95695e695ee404efc251efba6d4 (patch)
tree24eff24c3171c525448ce5326e6e5c549e4525dc /test/CodeGen/Generic/select.ll
parentd4af306aec6b37abf6d5509e107f277b681ec83d (diff)
downloadllvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.tar.gz
llvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.tar.bz2
llvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.tar.xz
Change all floating constants that are not exactly
representable to use hex format. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic/select.ll')
-rw-r--r--test/CodeGen/Generic/select.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Generic/select.ll b/test/CodeGen/Generic/select.ll
index edf3641924..87ea405a1f 100644
--- a/test/CodeGen/Generic/select.ll
+++ b/test/CodeGen/Generic/select.ll
@@ -15,7 +15,7 @@ begin
%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
+ %d = add float %X, 0x400921CAC0000000 ; 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)
%j = add ushort 65535, 30 ; result shd be 29 (not in immed fld)