aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-05-03 20:54:42 +0000
committerDale Johannesen <dalej@apple.com>2007-05-03 20:54:42 +0000
commit4ac075c859ec0b03d61229bca3517a6801ac63ab (patch)
tree883b5c7beb79d09ebacc3320e6c85b6e97ed5efa /test
parente8e5495474d67cd5151bd88e502be3f46ace7a85 (diff)
downloadexternal_llvm-4ac075c859ec0b03d61229bca3517a6801ac63ab.zip
external_llvm-4ac075c859ec0b03d61229bca3517a6801ac63ab.tar.gz
external_llvm-4ac075c859ec0b03d61229bca3517a6801ac63ab.tar.bz2
Evan's patch to avoid FPreg->intreg copy for cvt; store to mem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/ARM/fptoint.ll33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/fptoint.ll b/test/CodeGen/ARM/fptoint.ll
new file mode 100644
index 0000000..45be89c
--- /dev/null
+++ b/test/CodeGen/ARM/fptoint.ll
@@ -0,0 +1,33 @@
+; RUN: llvm-as < %s | llc -march=arm -mattr=+v6,+vfp2 > %t
+; RUN: not grep fmrs %t
+
+@i = weak global i32 0 ; <i32*> [#uses=2]
+@u = weak global i32 0 ; <i32*> [#uses=2]
+
+define void @foo5(float %x) {
+entry:
+ %tmp1 = fptosi float %x to i32 ; <i32> [#uses=1]
+ store i32 %tmp1, i32* @i
+ ret void
+}
+
+define void @foo6(float %x) {
+entry:
+ %tmp1 = fptoui float %x to i32 ; <i32> [#uses=1]
+ store i32 %tmp1, i32* @u
+ ret void
+}
+
+define void @foo7(double %x) {
+entry:
+ %tmp1 = fptosi double %x to i32 ; <i32> [#uses=1]
+ store i32 %tmp1, i32* @i
+ ret void
+}
+
+define void @foo8(double %x) {
+entry:
+ %tmp1 = fptoui double %x to i32 ; <i32> [#uses=1]
+ store i32 %tmp1, i32* @u
+ ret void
+}