summaryrefslogtreecommitdiff
path: root/lldb/unittests
diff options
context:
space:
mode:
authorAnton Korobeynikov <anton@korobeynikov.info>2023-04-17 11:29:59 -0700
committerAnton Korobeynikov <anton@korobeynikov.info>2023-04-17 11:30:27 -0700
commit845612062389e3defbe073119b481a5472e9fc36 (patch)
treead237d4caa0980accf85c2bb669f5c9be45138bd /lldb/unittests
parent5041fe8439c161e5d9d8f7774f7ca95af46d880e (diff)
downloadllvm-845612062389e3defbe073119b481a5472e9fc36.tar.gz
Revert "[lldb] Add support for MSP430 in LLDB."
This reverts commit 82c02b733c7736507a41a26bebd37d3f8e88bd4e. Apparently, the original patch was not rebased onto `main
Diffstat (limited to 'lldb/unittests')
-rw-r--r--lldb/unittests/Utility/ArchSpecTest.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/unittests/Utility/ArchSpecTest.cpp b/lldb/unittests/Utility/ArchSpecTest.cpp
index de3590b73bba..43cec1f735cc 100644
--- a/lldb/unittests/Utility/ArchSpecTest.cpp
+++ b/lldb/unittests/Utility/ArchSpecTest.cpp
@@ -123,12 +123,6 @@ TEST(ArchSpecTest, TestSetTriple) {
EXPECT_STREQ("i686", AS.GetArchitectureName());
EXPECT_EQ(ArchSpec::eCore_x86_32_i686, AS.GetCore());
- AS = ArchSpec();
- EXPECT_TRUE(AS.SetTriple("msp430---elf"));
- EXPECT_EQ(llvm::Triple::msp430, AS.GetTriple().getArch());
- EXPECT_STREQ("msp430", AS.GetArchitectureName());
- EXPECT_EQ(ArchSpec::eCore_msp430, AS.GetCore());
-
// Various flavors of invalid triples.
AS = ArchSpec();
EXPECT_FALSE(AS.SetTriple("unknown-unknown-unknown"));