1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

double to float casts should nto result in an fmr

llvm-svn: 23653
This commit is contained in:
Chris Lattner 2005-10-07 04:59:41 +00:00
parent 9be9eb2f7f
commit 8741e905da

View File

@ -0,0 +1,7 @@
; RUN: llvm-as < %s | llc -march=ppc32 &&
; RUN: llvm-as < %s | llc -march=ppc32 | not grep fmr
double %test(float %F) {
%F = cast float %F to double
ret double %F
}