aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/v4f32-immediate.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/v4f32-immediate.ll
parentd4af306aec6b37abf6d5509e107f277b681ec83d (diff)
downloadexternal_llvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.zip
external_llvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.tar.gz
external_llvm-c2ec2baf3d4de95695e695ee404efc251efba6d4.tar.bz2
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/v4f32-immediate.ll')
-rw-r--r--test/CodeGen/X86/v4f32-immediate.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/v4f32-immediate.ll b/test/CodeGen/X86/v4f32-immediate.ll
index 67b5e79..bd6045c 100644
--- a/test/CodeGen/X86/v4f32-immediate.ll
+++ b/test/CodeGen/X86/v4f32-immediate.ll
@@ -1,5 +1,5 @@
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep movaps
define <4 x float> @foo() {
- ret <4 x float> <float 3.223542354, float 2.3, float 1.2, float 0.1>
+ ret <4 x float> <float 0x4009C9D0A0000000, float 0x4002666660000000, float 0x3FF3333340000000, float 0x3FB99999A0000000>
}