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

This commit is contained in:
Martin Storsjö 2022-08-12 00:34:21 +03:00
parent 9637a17126
commit a5881e8a81
1 changed files with 1 additions and 0 deletions

View File

@ -879,6 +879,7 @@ static Mangled::NamePreference opts::symtab::getNamePreference() {
case ManglingPreference::MangledWithoutArguments:
return Mangled::ePreferDemangledWithoutArguments;
}
llvm_unreachable("Fully covered switch above!");
}
int opts::symtab::handleSymtabCommand(Debugger &Dbg) {