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/Generic/sched.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/Generic/sched.ll')
-rw-r--r-- | llvm/test/CodeGen/Generic/sched.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Generic/sched.ll b/llvm/test/CodeGen/Generic/sched.ll index ed2f44edf45..f66e9f0af25 100644 --- a/llvm/test/CodeGen/Generic/sched.ll +++ b/llvm/test/CodeGen/Generic/sched.ll @@ -13,7 +13,7 @@ bb1: %z1 = add float %x1, %y1 ;; z1 = x1 + y1 %x2 = mul float %x, 0.5 ;; x2 - %y2 = mul float %y, 0.9 ;; y2 + %y2 = mul float %y, 0x3FECCCCCC0000000 ;; y2 %z2 = add float %x2, %y2 ;; z2 = x2 + y2 %z3 = add float %z1, %z2 ;; z3 = z1 + z2 |