summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/MSP430
diff options
context:
space:
mode:
authorMichael Kruse <llvm-project@meinersbur.de>2025-01-03 10:22:51 +0100
committerMichael Kruse <llvm-project@meinersbur.de>2025-01-03 10:22:51 +0100
commit38500d63e14ce340236840f60d356cdefb56a52c (patch)
tree17edbec446ce9b50d2f215a483b83afb293a635d /llvm/test/CodeGen/MSP430
parent1a3d5daaef7a6a63448a497da3eff7fc9e23df26 (diff)
parent27f30029741ecf023baece7b3dde1ff9011ffefc (diff)
Merge branch 'main' into users/meinersbur/flang_runtime_split-headersusers/meinersbur/flang_runtime_split-headers
Diffstat (limited to 'llvm/test/CodeGen/MSP430')
-rw-r--r--llvm/test/CodeGen/MSP430/2009-05-17-Rot.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/2009-05-17-Shift.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/2009-05-19-DoubleSplit.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/2009-10-10-OrImpDef.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/2009-11-20-NewNode.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/AddrMode-bis-rx.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/AddrMode-bis-xr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/AddrMode-mov-rx.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/AddrMode-mov-xr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/BranchSelector.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/DbgValueOtherTargets.test2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16mi.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16mm.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16mr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16ri.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16rm.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst16rr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8mi.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8mm.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8mr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8ri.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8rm.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/Inst8rr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/InstII.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/bit.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/flt_rounds.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/indirectbr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/indirectbr2.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/mult-alt-generic-msp430.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/select-use-sr.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/setcc.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/spill-to-stack.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/stacksave_restore.ll2
-rw-r--r--llvm/test/CodeGen/MSP430/umulo-16.ll2
34 files changed, 34 insertions, 34 deletions
diff --git a/llvm/test/CodeGen/MSP430/2009-05-17-Rot.ll b/llvm/test/CodeGen/MSP430/2009-05-17-Rot.ll
index a2c9cebe72db..c5f11ee4da95 100644
--- a/llvm/test/CodeGen/MSP430/2009-05-17-Rot.ll
+++ b/llvm/test/CodeGen/MSP430/2009-05-17-Rot.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430
+; RUN: llc < %s -mtriple=msp430
define i16 @rol1u16(i16 %x.arg) nounwind {
%retval = alloca i16
diff --git a/llvm/test/CodeGen/MSP430/2009-05-17-Shift.ll b/llvm/test/CodeGen/MSP430/2009-05-17-Shift.ll
index ace4413618f7..2ea02737ff92 100644
--- a/llvm/test/CodeGen/MSP430/2009-05-17-Shift.ll
+++ b/llvm/test/CodeGen/MSP430/2009-05-17-Shift.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | grep rra | count 1
+; RUN: llc < %s -mtriple=msp430 | grep rra | count 1
define i16 @lsr2u16(i16 %x.arg) nounwind {
%retval = alloca i16
diff --git a/llvm/test/CodeGen/MSP430/2009-05-19-DoubleSplit.ll b/llvm/test/CodeGen/MSP430/2009-05-19-DoubleSplit.ll
index 54eb7ff5c0bf..3e39bdb92d20 100644
--- a/llvm/test/CodeGen/MSP430/2009-05-19-DoubleSplit.ll
+++ b/llvm/test/CodeGen/MSP430/2009-05-19-DoubleSplit.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430
+; RUN: llc < %s -mtriple=msp430
define i16 @test(double %d) nounwind {
entry:
diff --git a/llvm/test/CodeGen/MSP430/2009-10-10-OrImpDef.ll b/llvm/test/CodeGen/MSP430/2009-10-10-OrImpDef.ll
index 45fd35c70eb9..b8989ad3e268 100644
--- a/llvm/test/CodeGen/MSP430/2009-10-10-OrImpDef.ll
+++ b/llvm/test/CodeGen/MSP430/2009-10-10-OrImpDef.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s
+; RUN: llc -mtriple=msp430 < %s
; PR4779
define void @foo() nounwind {
entry:
diff --git a/llvm/test/CodeGen/MSP430/2009-11-20-NewNode.ll b/llvm/test/CodeGen/MSP430/2009-11-20-NewNode.ll
index 887c7d6fa24e..6c9c16843b20 100644
--- a/llvm/test/CodeGen/MSP430/2009-11-20-NewNode.ll
+++ b/llvm/test/CodeGen/MSP430/2009-11-20-NewNode.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s
+; RUN: llc -mtriple=msp430 < %s
; PR5558
define i64 @_strtoll_r(i16 %base) nounwind {
diff --git a/llvm/test/CodeGen/MSP430/AddrMode-bis-rx.ll b/llvm/test/CodeGen/MSP430/AddrMode-bis-rx.ll
index d2a04348e3f9..334bfba8767e 100644
--- a/llvm/test/CodeGen/MSP430/AddrMode-bis-rx.ll
+++ b/llvm/test/CodeGen/MSP430/AddrMode-bis-rx.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:16"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/AddrMode-bis-xr.ll b/llvm/test/CodeGen/MSP430/AddrMode-bis-xr.ll
index 300949d654be..48fc05631956 100644
--- a/llvm/test/CodeGen/MSP430/AddrMode-bis-xr.ll
+++ b/llvm/test/CodeGen/MSP430/AddrMode-bis-xr.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:16"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/AddrMode-mov-rx.ll b/llvm/test/CodeGen/MSP430/AddrMode-mov-rx.ll
index 18e2431eebf8..db535cf71d54 100644
--- a/llvm/test/CodeGen/MSP430/AddrMode-mov-rx.ll
+++ b/llvm/test/CodeGen/MSP430/AddrMode-mov-rx.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:16"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/AddrMode-mov-xr.ll b/llvm/test/CodeGen/MSP430/AddrMode-mov-xr.ll
index 09219d019fd2..d71494dbc441 100644
--- a/llvm/test/CodeGen/MSP430/AddrMode-mov-xr.ll
+++ b/llvm/test/CodeGen/MSP430/AddrMode-mov-xr.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:16"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/BranchSelector.ll b/llvm/test/CodeGen/MSP430/BranchSelector.ll
index 3acd7bd3cca3..100461923050 100644
--- a/llvm/test/CodeGen/MSP430/BranchSelector.ll
+++ b/llvm/test/CodeGen/MSP430/BranchSelector.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-m:e-p:16:16-i32:16:32-a:16-n8:16"
target triple = "msp430"
diff --git a/llvm/test/CodeGen/MSP430/DbgValueOtherTargets.test b/llvm/test/CodeGen/MSP430/DbgValueOtherTargets.test
index 7adfbcafa35b..512961762a3e 100644
--- a/llvm/test/CodeGen/MSP430/DbgValueOtherTargets.test
+++ b/llvm/test/CodeGen/MSP430/DbgValueOtherTargets.test
@@ -1 +1 @@
-RUN: llc -O0 -march=msp430 -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
+RUN: llc -O0 -mtriple=msp430 -asm-verbose < %S/../Inputs/DbgValueOtherTargets.ll | FileCheck %S/../Inputs/DbgValueOtherTargets.ll
diff --git a/llvm/test/CodeGen/MSP430/Inst16mi.ll b/llvm/test/CodeGen/MSP430/Inst16mi.ll
index 28e2e2c570ed..9a79ca623cef 100644
--- a/llvm/test/CodeGen/MSP430/Inst16mi.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16mi.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/Inst16mm.ll b/llvm/test/CodeGen/MSP430/Inst16mm.ll
index 1851045b32da..df989e24728f 100644
--- a/llvm/test/CodeGen/MSP430/Inst16mm.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16mm.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i16 0, align 2
diff --git a/llvm/test/CodeGen/MSP430/Inst16mr.ll b/llvm/test/CodeGen/MSP430/Inst16mr.ll
index 383b951b2202..5904dbdbf455 100644
--- a/llvm/test/CodeGen/MSP430/Inst16mr.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16mr.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i16 0, align 2
diff --git a/llvm/test/CodeGen/MSP430/Inst16ri.ll b/llvm/test/CodeGen/MSP430/Inst16ri.ll
index 58b2791194ac..b1a0d5e22ef3 100644
--- a/llvm/test/CodeGen/MSP430/Inst16ri.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16ri.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/Inst16rm.ll b/llvm/test/CodeGen/MSP430/Inst16rm.ll
index f4405def2c19..419fa04994d6 100644
--- a/llvm/test/CodeGen/MSP430/Inst16rm.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16rm.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i16 0, align 2
diff --git a/llvm/test/CodeGen/MSP430/Inst16rr.ll b/llvm/test/CodeGen/MSP430/Inst16rr.ll
index 124d42113a21..b97afb2c881e 100644
--- a/llvm/test/CodeGen/MSP430/Inst16rr.ll
+++ b/llvm/test/CodeGen/MSP430/Inst16rr.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/Inst8mi.ll b/llvm/test/CodeGen/MSP430/Inst8mi.ll
index 0fb0b9395056..c78290bb0070 100644
--- a/llvm/test/CodeGen/MSP430/Inst8mi.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8mi.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i8:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i8 0, align 1
diff --git a/llvm/test/CodeGen/MSP430/Inst8mm.ll b/llvm/test/CodeGen/MSP430/Inst8mm.ll
index eec2ef6d3033..f64ddcdb7b47 100644
--- a/llvm/test/CodeGen/MSP430/Inst8mm.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8mm.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/Inst8mr.ll b/llvm/test/CodeGen/MSP430/Inst8mr.ll
index bad7c9cbe3c3..3f33a26fe410 100644
--- a/llvm/test/CodeGen/MSP430/Inst8mr.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8mr.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i8 0, align 1
diff --git a/llvm/test/CodeGen/MSP430/Inst8ri.ll b/llvm/test/CodeGen/MSP430/Inst8ri.ll
index ff3dee8bfb94..89f7361a20d2 100644
--- a/llvm/test/CodeGen/MSP430/Inst8ri.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8ri.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/Inst8rm.ll b/llvm/test/CodeGen/MSP430/Inst8rm.ll
index 95f0835026b6..88a9f3dabdcf 100644
--- a/llvm/test/CodeGen/MSP430/Inst8rm.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8rm.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i8:8:8-i32:8:8"
target triple = "msp430-generic-generic"
@foo = common global i8 0, align 1
diff --git a/llvm/test/CodeGen/MSP430/Inst8rr.ll b/llvm/test/CodeGen/MSP430/Inst8rr.ll
index 20c4fa5aacf5..d159bcafede3 100644
--- a/llvm/test/CodeGen/MSP430/Inst8rr.ll
+++ b/llvm/test/CodeGen/MSP430/Inst8rr.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i8:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/InstII.ll b/llvm/test/CodeGen/MSP430/InstII.ll
index abb1dd00b2ab..851029364133 100644
--- a/llvm/test/CodeGen/MSP430/InstII.ll
+++ b/llvm/test/CodeGen/MSP430/InstII.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/bit.ll b/llvm/test/CodeGen/MSP430/bit.ll
index a67fcdfe5f96..42211d23ab08 100644
--- a/llvm/test/CodeGen/MSP430/bit.ll
+++ b/llvm/test/CodeGen/MSP430/bit.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:32"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/flt_rounds.ll b/llvm/test/CodeGen/MSP430/flt_rounds.ll
index 25902a3a422a..dad8d3c7db06 100644
--- a/llvm/test/CodeGen/MSP430/flt_rounds.ll
+++ b/llvm/test/CodeGen/MSP430/flt_rounds.ll
@@ -1,4 +1,4 @@
-; RUN: llc -verify-machineinstrs < %s -march=msp430
+; RUN: llc -verify-machineinstrs < %s -mtriple=msp430
define i16 @foo() {
entry:
diff --git a/llvm/test/CodeGen/MSP430/indirectbr.ll b/llvm/test/CodeGen/MSP430/indirectbr.ll
index 960641986770..07c5c610f4c0 100644
--- a/llvm/test/CodeGen/MSP430/indirectbr.ll
+++ b/llvm/test/CodeGen/MSP430/indirectbr.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s
+; RUN: llc -mtriple=msp430 < %s
@nextaddr = global ptr null ; <i8**> [#uses=2]
@C.0.2070 = private constant [5 x ptr] [ptr blockaddress(@foo, %L1), ptr blockaddress(@foo, %L2), ptr blockaddress(@foo, %L3), ptr blockaddress(@foo, %L4), ptr blockaddress(@foo, %L5)] ; <[5 x i8*]*> [#uses=1]
diff --git a/llvm/test/CodeGen/MSP430/indirectbr2.ll b/llvm/test/CodeGen/MSP430/indirectbr2.ll
index 954f2480adbe..f0147368d14a 100644
--- a/llvm/test/CodeGen/MSP430/indirectbr2.ll
+++ b/llvm/test/CodeGen/MSP430/indirectbr2.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
@C.0.2070 = private constant [5 x ptr] [ptr blockaddress(@foo, %L1), ptr blockaddress(@foo, %L2), ptr blockaddress(@foo, %L3), ptr blockaddress(@foo, %L4), ptr blockaddress(@foo, %L5)] ; <[5 x i8*]*> [#uses=1]
define internal i16 @foo(i16 %i) nounwind {
diff --git a/llvm/test/CodeGen/MSP430/mult-alt-generic-msp430.ll b/llvm/test/CodeGen/MSP430/mult-alt-generic-msp430.ll
index 6655af5cc756..cdbd007e8efd 100644
--- a/llvm/test/CodeGen/MSP430/mult-alt-generic-msp430.ll
+++ b/llvm/test/CodeGen/MSP430/mult-alt-generic-msp430.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 -no-integrated-as
+; RUN: llc < %s -mtriple=msp430 -no-integrated-as
; ModuleID = 'mult-alt-generic.c'
target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
target triple = "msp430"
diff --git a/llvm/test/CodeGen/MSP430/select-use-sr.ll b/llvm/test/CodeGen/MSP430/select-use-sr.ll
index 159fc93db5aa..c14b15cf2398 100644
--- a/llvm/test/CodeGen/MSP430/select-use-sr.ll
+++ b/llvm/test/CodeGen/MSP430/select-use-sr.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
; PR32769
target triple = "msp430"
diff --git a/llvm/test/CodeGen/MSP430/setcc.ll b/llvm/test/CodeGen/MSP430/setcc.ll
index 52baf6429033..bba3b40eef19 100644
--- a/llvm/test/CodeGen/MSP430/setcc.ll
+++ b/llvm/test/CodeGen/MSP430/setcc.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s | FileCheck %s
+; RUN: llc -mtriple=msp430 < %s | FileCheck %s
target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:32"
target triple = "msp430-generic-generic"
diff --git a/llvm/test/CodeGen/MSP430/spill-to-stack.ll b/llvm/test/CodeGen/MSP430/spill-to-stack.ll
index 69f66938dd78..a608e9372eab 100644
--- a/llvm/test/CodeGen/MSP430/spill-to-stack.ll
+++ b/llvm/test/CodeGen/MSP430/spill-to-stack.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=msp430 < %s
+; RUN: llc -mtriple=msp430 < %s
%VeryLarge = type { i8, i32, i32, i32, i32, i32, i32, i32, i32, i32 }
; intentionally cause a spill
diff --git a/llvm/test/CodeGen/MSP430/stacksave_restore.ll b/llvm/test/CodeGen/MSP430/stacksave_restore.ll
index 64bfcc63aad7..38701f1782b2 100644
--- a/llvm/test/CodeGen/MSP430/stacksave_restore.ll
+++ b/llvm/test/CodeGen/MSP430/stacksave_restore.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430
+; RUN: llc < %s -mtriple=msp430
target triple = "msp430"
diff --git a/llvm/test/CodeGen/MSP430/umulo-16.ll b/llvm/test/CodeGen/MSP430/umulo-16.ll
index bd421379147e..a8a72ac59727 100644
--- a/llvm/test/CodeGen/MSP430/umulo-16.ll
+++ b/llvm/test/CodeGen/MSP430/umulo-16.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430 | FileCheck %s
+; RUN: llc < %s -mtriple=msp430 | FileCheck %s
target datalayout = "e-m:e-p:16:16-i32:16:32-a:16-n8:16"
target triple = "msp430"