aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/store-fp-constant.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/X86/store-fp-constant.ll
parentd4af306aec6b37abf6d5509e107f277b681ec83d (diff)
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/X86/store-fp-constant.ll')
-rw-r--r--test/CodeGen/X86/store-fp-constant.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/store-fp-constant.ll b/test/CodeGen/X86/store-fp-constant.ll
index 3a80080383..80f4e67d05 100644
--- a/test/CodeGen/X86/store-fp-constant.ll
+++ b/test/CodeGen/X86/store-fp-constant.ll
@@ -12,9 +12,9 @@ declare void %extdouble(double)
implementation
void %testfloatstore() {
- call void %extfloat(float 1234.4)
- call void %extdouble(double 1234.4123)
- store float 13.0123, float* %G
+ call void %extfloat(float 0x40934999A0000000)
+ call void %extdouble(double 0x409349A631F8A090)
+ store float 0x402A064C20000000, float* %G
ret void
}