summaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/storetrunc-fp.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-17 19:47:23 +0000
committerChris Lattner <sabre@nondot.org>2008-01-17 19:47:23 +0000
commit41c5a3918f62a46671c972b1069072f9d9173605 (patch)
tree625162201246c2d134f1adc7d064d4927e0b9787 /test/CodeGen/Generic/storetrunc-fp.ll
parente509e7a17819f808dabb815474eb8c04540de7b3 (diff)
downloadllvm-41c5a3918f62a46671c972b1069072f9d9173605.tar.gz
llvm-41c5a3918f62a46671c972b1069072f9d9173605.tar.bz2
llvm-41c5a3918f62a46671c972b1069072f9d9173605.tar.xz
new testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic/storetrunc-fp.ll')
-rw-r--r--test/CodeGen/Generic/storetrunc-fp.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/storetrunc-fp.ll b/test/CodeGen/Generic/storetrunc-fp.ll
new file mode 100644
index 0000000000..710a9907e0
--- /dev/null
+++ b/test/CodeGen/Generic/storetrunc-fp.ll
@@ -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
+}