Skip to content
Snippets Groups Projects
Commit 69531263 authored by Dan Gohman's avatar Dan Gohman
Browse files

Fix this test so that folding doesn't depend on a potentially

"inexact" result.

llvm-svn: 114198
parent df25777f
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment