commit | 9f28bc56ecd6c87bf4875a6c3ded509ef08b9231 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Aug 27 01:09:54 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Aug 27 01:09:54 2008 +0000 |
tree | b0cd0ac5c51a8492799f9e9c5a0869fb28e4b9e2 | |
parent | 32e6eeefeacc64395e8a616e876d25a8a4dc1060 [diff] [blame] |
Basic FastISel support for floating-point constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55401 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index 9c10a7b..b96406e 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll
@@ -35,10 +35,11 @@ %t0 = add double %r, %s %t1 = mul double %t0, %s %t2 = sub double %t1, %s + %t3 = add double %t2, 707.0 br label %exit exit: - ret double %t2 + ret double %t3 } define i32 @cast(){