forked from OSchip/llvm-project
[lldb] Fix unhandled switch case for GOFF in GDBRemoteCommunicationClient
Just implementing the default case that emits an error to supress the compiler warning.
This commit is contained in:
parent
8144a7d8fc
commit
33d0031edb
|
@ -2120,6 +2120,7 @@ bool GDBRemoteCommunicationClient::GetCurrentProcessInfo(bool allow_lazy) {
|
|||
case llvm::Triple::COFF:
|
||||
m_process_arch.SetArchitecture(eArchTypeCOFF, cpu, sub);
|
||||
break;
|
||||
case llvm::Triple::GOFF:
|
||||
case llvm::Triple::Wasm:
|
||||
case llvm::Triple::XCOFF:
|
||||
LLDB_LOGF(log, "error: not supported target architecture");
|
||||
|
|
Loading…
Reference in New Issue