From: Nate Begeman Date: Tue, 25 Oct 2005 23:53:21 +0000 (+0000) Subject: Add a regression test for the recent fix for FP_TO_UINT lowering in the ppc X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=92d6bb35d79be5ab6fa3963ca537b53d8bb74b4a;p=oota-llvm.git Add a regression test for the recent fix for FP_TO_UINT lowering in the ppc backend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23995 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/fp_to_uint.ll b/test/CodeGen/PowerPC/fp_to_uint.ll new file mode 100644 index 00000000000..44d6e9092b3 --- /dev/null +++ b/test/CodeGen/PowerPC/fp_to_uint.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=ppc32 | grep fctiwz | wc -l | grep 1 + +implementation + +ushort %foo(float %a) { +entry: + %tmp.1 = cast float %a to ushort + ret ushort %tmp.1 +}