1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/PowerPC/fp_to_uint.ll
2007-08-15 13:36:28 +00:00

10 lines
195 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep fctiwz | count 1
implementation
ushort %foo(float %a) {
entry:
%tmp.1 = cast float %a to ushort
ret ushort %tmp.1
}