summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/MSP430/Inst16mi.ll
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2018-11-08 16:21:29 +0000
committerDavide Italiano <davide@freebsd.org>2018-11-08 16:21:29 +0000
commitac8279ab8bbfd0e1af2c4815391aaf90cf548a33 (patch)
treebf4562a310e73952c15fc13d783c5e7c29aa7cc8 /llvm/test/CodeGen/MSP430/Inst16mi.ll
parent692b34790f34521f34bb8697f5c8465d8914a862 (diff)
downloadbcm5719-llvm-ac8279ab8bbfd0e1af2c4815391aaf90cf548a33.tar.gz
bcm5719-llvm-ac8279ab8bbfd0e1af2c4815391aaf90cf548a33.zip
Revert "[MSP430] Add MC layer"
This commit broke the module buildbots. Error: lib/Target/MSP430/MSP430GenAsmMatcher.inc:1027:1: error: redundant namespace 'llvm' [-Wmodules-import-nested-redundant] ^ llvm-svn: 346410
Diffstat (limited to 'llvm/test/CodeGen/MSP430/Inst16mi.ll')
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16mi.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/MSP430/Inst16mi.ll b/llvm/test/CodeGen/MSP430/Inst16mi.ll
index bb99e28a1ba..38c16f2ba23 100644
--- a/llvm/test/CodeGen/MSP430/Inst16mi.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16mi.ll
@@ -6,14 +6,14 @@ target triple = "msp430-generic-generic"
define void @mov() nounwind {
; CHECK-LABEL: mov:
-; CHECK: mov #2, &foo
+; CHECK: mov.w #2, &foo
store i16 2, i16 * @foo
ret void
}
define void @add() nounwind {
; CHECK-LABEL: add:
-; CHECK: incd &foo
+; CHECK: add.w #2, &foo
%1 = load i16, i16* @foo
%2 = add i16 %1, 2
store i16 %2, i16 * @foo
@@ -22,7 +22,7 @@ define void @add() nounwind {
define void @and() nounwind {
; CHECK-LABEL: and:
-; CHECK: and #2, &foo
+; CHECK: and.w #2, &foo
%1 = load i16, i16* @foo
%2 = and i16 %1, 2
store i16 %2, i16 * @foo
@@ -31,7 +31,7 @@ define void @and() nounwind {
define void @bis() nounwind {
; CHECK-LABEL: bis:
-; CHECK: bis #2, &foo
+; CHECK: bis.w #2, &foo
%1 = load i16, i16* @foo
%2 = or i16 %1, 2
store i16 %2, i16 * @foo
@@ -40,7 +40,7 @@ define void @bis() nounwind {
define void @xor() nounwind {
; CHECK-LABEL: xor:
-; CHECK: xor #2, &foo
+; CHECK: xor.w #2, &foo
%1 = load i16, i16* @foo
%2 = xor i16 %1, 2
store i16 %2, i16 * @foo
OpenPOWER on IntegriCloud