diff options
author | Anton Korobeynikov <anton@korobeynikov.info> | 2023-04-17 11:29:59 -0700 |
---|---|---|
committer | Anton Korobeynikov <anton@korobeynikov.info> | 2023-04-17 11:30:27 -0700 |
commit | 845612062389e3defbe073119b481a5472e9fc36 (patch) | |
tree | ad237d4caa0980accf85c2bb669f5c9be45138bd /lldb/source/Host/common/NativeProcessProtocol.cpp | |
parent | 5041fe8439c161e5d9d8f7774f7ca95af46d880e (diff) | |
download | llvm-845612062389e3defbe073119b481a5472e9fc36.zip llvm-845612062389e3defbe073119b481a5472e9fc36.tar.gz llvm-845612062389e3defbe073119b481a5472e9fc36.tar.bz2 |
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/source/Host/common/NativeProcessProtocol.cpp')
-rw-r--r-- | lldb/source/Host/common/NativeProcessProtocol.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/Host/common/NativeProcessProtocol.cpp b/lldb/source/Host/common/NativeProcessProtocol.cpp index b3ef8f0..95258e1 100644 --- a/lldb/source/Host/common/NativeProcessProtocol.cpp +++ b/lldb/source/Host/common/NativeProcessProtocol.cpp @@ -503,7 +503,6 @@ NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { static const uint8_t g_i386_opcode[] = {0xCC}; static const uint8_t g_mips64_opcode[] = {0x00, 0x00, 0x00, 0x0d}; static const uint8_t g_mips64el_opcode[] = {0x0d, 0x00, 0x00, 0x00}; - static const uint8_t g_msp430_opcode[] = {0x43, 0x43}; static const uint8_t g_s390x_opcode[] = {0x00, 0x01}; static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08}; // trap static const uint8_t g_ppcle_opcode[] = {0x08, 0x00, 0xe0, 0x7f}; // trap @@ -529,9 +528,6 @@ NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { case llvm::Triple::mips64el: return llvm::ArrayRef(g_mips64el_opcode); - case llvm::Triple::msp430: - return llvm::ArrayRef(g_msp430_opcode); - case llvm::Triple::systemz: return llvm::ArrayRef(g_s390x_opcode); |