summaryrefslogtreecommitdiff
path: root/test/CodeGen/MSP430
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-05-04 01:01:39 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-05-04 01:01:39 +0000
commit9dfb367a424cd71686e7830668a2e44eaa7aaef7 (patch)
treed65b32b84ca9e3e73565d6b1c6e2876c78271d96 /test/CodeGen/MSP430
parentb89383aeffa0bdaebe70c5e5bff679b369c9e315 (diff)
downloadllvm-9dfb367a424cd71686e7830668a2e44eaa7aaef7.tar.gz
llvm-9dfb367a424cd71686e7830668a2e44eaa7aaef7.tar.bz2
llvm-9dfb367a424cd71686e7830668a2e44eaa7aaef7.tar.xz
Fix register-dependent test in MSP430.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/MSP430')
-rw-r--r--test/CodeGen/MSP430/Inst8rr.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/MSP430/Inst8rr.ll b/test/CodeGen/MSP430/Inst8rr.ll
index 0f5fc12b62..45342e2ee9 100644
--- a/test/CodeGen/MSP430/Inst8rr.ll
+++ b/test/CodeGen/MSP430/Inst8rr.ll
@@ -10,7 +10,7 @@ define i8 @mov(i8 %a, i8 %b) nounwind {
define i8 @add(i8 %a, i8 %b) nounwind {
; CHECK: add:
-; CHECK: add.b r12, r15
+; CHECK: add.b
%1 = add i8 %a, %b
ret i8 %1
}