[lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

This commit is contained in:
Martin Storsjö 2022-08-02 10:28:12 +03:00
parent 7f24fd26a8
commit b7c5683fac
1 changed files with 1 additions and 0 deletions

View File

@ -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,