forked from OSchip/llvm-project
[lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.
This commit is contained in:
parent
7f24fd26a8
commit
b7c5683fac
|
@ -599,6 +599,7 @@ const char *Instruction::GetNameForInstructionControlFlowKind(
|
|||
case eInstructionControlFlowKindFarJump:
|
||||
return "far jump";
|
||||
}
|
||||
llvm_unreachable("Fully covered switch above!");
|
||||
}
|
||||
|
||||
void Instruction::Dump(lldb_private::Stream *s, uint32_t max_opcode_byte_size,
|
||||
|
|
Loading…
Reference in New Issue