aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/fold-calls.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/fold-calls.ll b/test/Transforms/InstCombine/fold-calls.ll
index 2b11771969..504f874bea 100644
--- a/test/Transforms/InstCombine/fold-calls.ll
+++ b/test/Transforms/InstCombine/fold-calls.ll
@@ -10,9 +10,9 @@ define double @foo() {
; This should fold.
; CHECK: @bar
-; CHECK: ret double 0x3FDA6026360C2F91
+; CHECK: ret double 0.0
define double @bar() {
- %t = call double @sin(double 9.0)
+ %t = call double @sin(double 0.0)
ret double %t
}