new testcase.
authorChris Lattner <sabre@nondot.org>
Thu, 17 Jan 2008 19:47:23 +0000 (19:47 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 17 Jan 2008 19:47:23 +0000 (19:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46139 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/storetrunc-fp.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Generic/storetrunc-fp.ll b/test/CodeGen/Generic/storetrunc-fp.ll
new file mode 100644 (file)
index 0000000..710a990
--- /dev/null
@@ -0,0 +1,8 @@
+; RUN: llvm-as < %s | llc
+
+define void @foo(double %a, double %b, float* %fp) {
+       %c = add double %a, %b
+       %d = fptrunc double %c to float
+       store float %d, float* %fp
+       ret void
+}