2010-12-29 11:58:47 +08:00
|
|
|
; RUN: llc < %s -enable-unsafe-fp-math -march=x86-64 | FileCheck %s
|
|
|
|
; CHECK-NOT: {{addsd|subsd|xor}}
|
2007-07-02 23:43:20 +08:00
|
|
|
|
|
|
|
declare double @sin(double %f)
|
|
|
|
|
|
|
|
define double @foo(double %e)
|
|
|
|
{
|
2009-06-05 06:49:04 +08:00
|
|
|
%f = fsub double 0.0, %e
|
2009-09-26 02:15:29 +08:00
|
|
|
%g = call double @sin(double %f) readonly
|
2009-06-05 06:49:04 +08:00
|
|
|
%h = fsub double 0.0, %g
|
2007-07-02 23:43:20 +08:00
|
|
|
ret double %h
|
|
|
|
}
|