These were moved to ../SPARC
[oota-llvm.git] / test / CodeGen / PowerPC / fpcopy.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 &&
2 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep fmr
3
4 double %test(float %F) {
5         %F = cast float %F to double
6         ret double %F
7 }