aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-10-11 23:03:53 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-10-11 23:03:53 +0000
commit2012d00dec16d998c3c3c05fb8b59614772ee490 (patch)
treeab5e6a42b2ece961e784c963461fbc65df5ddab2 /test
parent1bb755cbeeabe6610220f1867fc08ea9503775a4 (diff)
downloadexternal_llvm-2012d00dec16d998c3c3c05fb8b59614772ee490.zip
external_llvm-2012d00dec16d998c3c3c05fb8b59614772ee490.tar.gz
external_llvm-2012d00dec16d998c3c3c05fb8b59614772ee490.tar.bz2
Add missed mem-mem move patterns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/MSP430/Inst16mm.ll8
-rw-r--r--test/CodeGen/MSP430/Inst8mm.ll8
2 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/MSP430/Inst16mm.ll b/test/CodeGen/MSP430/Inst16mm.ll
index dd4b570..5f492bb 100644
--- a/test/CodeGen/MSP430/Inst16mm.ll
+++ b/test/CodeGen/MSP430/Inst16mm.ll
@@ -4,6 +4,14 @@ target triple = "msp430-generic-generic"
@foo = common global i16 0, align 2
@bar = common global i16 0, align 2
+define void @mov() nounwind {
+; CHECK: mov:
+; CHECK: mov.w &bar, &foo
+ %1 = load i16* @bar
+ store i16 %1, i16* @foo
+ ret void
+}
+
define void @add() nounwind {
; CHECK: add:
; CHECK: add.w &bar, &foo
diff --git a/test/CodeGen/MSP430/Inst8mm.ll b/test/CodeGen/MSP430/Inst8mm.ll
index 5a128c5..7e237a2 100644
--- a/test/CodeGen/MSP430/Inst8mm.ll
+++ b/test/CodeGen/MSP430/Inst8mm.ll
@@ -5,6 +5,14 @@ target triple = "msp430-generic-generic"
@foo = common global i8 0, align 1
@bar = common global i8 0, align 1
+define void @mov() nounwind {
+; CHECK: mov:
+; CHECK: mov.b &bar, &foo
+ %1 = load i8* @bar
+ store i8 %1, i8* @foo
+ ret void
+}
+
define void @add() nounwind {
; CHECK: add:
; CHECK: add.b &bar, &foo