Home | History | Annotate | Download | only in InstCombine

Lines Matching full:double

5 ; CHECK:   %t = call double @sin(double 0x7FF0000000000000)
6 define double @foo() {
7 %t = call double @sin(double 0x7FF0000000000000)
8 ret double %t
13 ; CHECK: ret double 0.0
14 define double @bar() {
15 %t = call double @sin(double 0.0)
16 ret double %t
19 declare double @sin(double)