[llvm-readobj][XCOFF][NFC] Add return statement to avoid -Wimplicit-fallthrough warning

This is to fix the commit in r370097.

llvm-svn: 370260
This commit is contained in:
Jason Liu 2019-08-28 20:59:17 +00:00
parent 3331fd8228
commit a1178b862a
1 changed files with 1 additions and 0 deletions

View File

@ -237,6 +237,7 @@ static StringRef GetSymbolValueName(XCOFF::StorageClass SC) {
case XCOFF::C_ECOML:
case XCOFF::C_DWARF:
assert(false && "This StorageClass for the symbol is not yet implemented.");
return "";
default:
return "Value";
}