diff options
author | Dale Johannesen <dalej@apple.com> | 2007-09-05 17:50:36 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-09-05 17:50:36 +0000 |
commit | 6480cc6f8c02794c9c78be0ed7dbb4631cb8ddea (patch) | |
tree | 05d750c3e24755674643923fb3f46ea9529ca72b /llvm/test/CodeGen/X86/vector.ll | |
parent | e58572233dd9d0d5ce4fac2cea5b77cb23f0b7bb (diff) | |
download | bcm5719-llvm-6480cc6f8c02794c9c78be0ed7dbb4631cb8ddea.tar.gz bcm5719-llvm-6480cc6f8c02794c9c78be0ed7dbb4631cb8ddea.zip |
Change all floating constants that are not exactly
representable to use hex format.
llvm-svn: 41722
Diffstat (limited to 'llvm/test/CodeGen/X86/vector.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vector.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/vector.ll b/llvm/test/CodeGen/X86/vector.ll index 348d4d6ccf4..4925ea87892 100644 --- a/llvm/test/CodeGen/X86/vector.ll +++ b/llvm/test/CodeGen/X86/vector.ll @@ -65,7 +65,7 @@ void %test_div(%f8 *%P, %f8* %Q, %f8 *%S) { void %test_cst(%f4 *%P, %f4 *%S) { %p = load %f4* %P - %R = add %f4 %p, <float 0.1, float 1.0, float 2.0, float 4.5> + %R = add %f4 %p, <float 0x3FB99999A0000000, float 1.0, float 2.0, float 4.5> store %f4 %R, %f4 *%S ret void } |