2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 &&
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 | not grep r1
|
2006-03-01 04:56:33 +00:00
|
|
|
|
|
|
|
double %test1(double %X) {
|
|
|
|
%Y = cast double %X to long
|
|
|
|
%Z = cast long %Y to double
|
|
|
|
ret double %Z
|
|
|
|
}
|
|
|
|
|
|
|
|
float %test2(double %X) {
|
|
|
|
%Y = cast double %X to long
|
|
|
|
%Z = cast long %Y to float
|
|
|
|
ret float %Z
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test3(float %X) {
|
|
|
|
%Y = cast float %X to long
|
|
|
|
%Z = cast long %Y to double
|
|
|
|
ret double %Z
|
|
|
|
}
|
|
|
|
|
|
|
|
float %test4(float %X) {
|
|
|
|
%Y = cast float %X to long
|
|
|
|
%Z = cast long %Y to float
|
|
|
|
ret float %Z
|
|
|
|
}
|
|
|
|
|