summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/MSP430
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2012-10-17 17:37:11 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2012-10-17 17:37:11 +0000
commite4b33a115bb91c663c55061fd232fa839cc8c4ca (patch)
treead1c5360b20d448e2e8114ed6aae403b81afe7f3 /test/CodeGen/MSP430
parentfdd6fa89b960088b368231ec08e56a0c0b1e6930 (diff)
downloadexternal_llvm-e4b33a115bb91c663c55061fd232fa839cc8c4ca.zip
external_llvm-e4b33a115bb91c663c55061fd232fa839cc8c4ca.tar.gz
external_llvm-e4b33a115bb91c663c55061fd232fa839cc8c4ca.tar.bz2
Fix fallout from RegInfo => FrameLowering refactoring on MSP430.
Patch by Job Noorman! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/MSP430')
-rw-r--r--test/CodeGen/MSP430/fp.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/MSP430/fp.ll b/test/CodeGen/MSP430/fp.ll
new file mode 100644
index 0000000..c3273ef
--- /dev/null
+++ b/test/CodeGen/MSP430/fp.ll
@@ -0,0 +1,17 @@
+; RUN: llc -O0 -disable-fp-elim < %s | FileCheck %s
+
+target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
+target triple = "msp430---elf"
+
+define void @fp() nounwind {
+entry:
+; CHECK: fp:
+; CHECK: push.w r4
+; CHECK: mov.w r1, r4
+; CHECK: sub.w #2, r1
+ %i = alloca i16, align 2
+; CHECK: mov.w #0, -2(r4)
+ store i16 0, i16* %i, align 2
+; CHECK: pop.w r4
+ ret void
+}