44d6e9092b31cb805e48efc7e80189a76a4199f9
[oota-llvm.git] / test / CodeGen / PowerPC / fp_to_uint.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 | grep fctiwz | wc -l | grep 1
2
3 implementation
4
5 ushort %foo(float %a) {
6 entry:
7         %tmp.1 = cast float %a to ushort
8         ret ushort %tmp.1
9 }