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 | c2ec2baf3d4de95695e695ee404efc251efba6d4 (patch) | |
tree | 24eff24c3171c525448ce5326e6e5c549e4525dc /test/CodeGen/Generic/sched.ll | |
parent | d4af306aec6b37abf6d5509e107f277b681ec83d (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/Generic/sched.ll')
-rw-r--r-- | test/CodeGen/Generic/sched.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Generic/sched.ll b/test/CodeGen/Generic/sched.ll index ed2f44edf4..f66e9f0af2 100644 --- a/test/CodeGen/Generic/sched.ll +++ b/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 |