Use static inline to do the right thing when built in C99 mode. Of course,
[llvm/stm8.git] / test / CodeGen / PowerPC / fsqrt.ll
blob74a8725eb12e30a4e3ee2c3ad544b2d6e189bb1f
1 ; fsqrt should be generated when the fsqrt feature is enabled, but not 
2 ; otherwise.
4 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=+fsqrt | \
5 ; RUN:   grep {fsqrt f1, f1}
6 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mcpu=g5 | \
7 ; RUN:   grep {fsqrt f1, f1}
8 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mattr=-fsqrt | \
9 ; RUN:   not grep {fsqrt f1, f1}
10 ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -mcpu=g4 | \
11 ; RUN:   not grep {fsqrt f1, f1}
13 declare double @llvm.sqrt.f64(double)
15 define double @X(double %Y) {
16         %Z = call double @llvm.sqrt.f64( double %Y )            ; <double> [#uses=1]
17         ret double %Z