diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel.ll b/llvm/test/CodeGen/X86/fast-isel.ll index 9c10a7b8285..b96406e2c8c 100644 --- a/llvm/test/CodeGen/X86/fast-isel.ll +++ b/llvm/test/CodeGen/X86/fast-isel.ll @@ -35,10 +35,11 @@ fast: %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(){ |