Lines Matching full:double
19 ; CHECK: define double @doo(double %x) nounwind {
20 ; CHECK: %sqrt = call double @sqrt(double %x) nounwind readonly
21 ; CHECK: %fabs = call double @fabs(double %sqrt) nounwind readonly
22 ; CHECK: %1 = fcmp oeq double %x, 0xFFF0000000000000
23 ; CHECK: %retval = select i1 %1, double 0x7FF0000000000000, double %fabs
24 ; CHECK: ret double %retval
27 define double @doo(double %x) nounwind {
28 %retval = call double @pow(double %x, double 0.5)
29 ret double %retval
33 declare double @pow(double, double) nounwind readonly