Suppress false-positive GCC -Wreturn-type warning.

llvm-svn: 361094
This commit is contained in:
Michael Liao 2019-05-18 06:35:47 +00:00
parent 5fab538e2a
commit 63621832da
1 changed files with 1 additions and 0 deletions

View File

@ -444,6 +444,7 @@ static size_t getSymbolSize(const Symbol &Sym) {
case Symbol::PlaceholderKind:
return sizeof(Symbol);
}
llvm_unreachable("unknown symbol kind");
}
inline void replaceSymbol(Symbol *Sym, const Symbol &New) {