1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[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 422b6b1146
commit 3989e2a0ae

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";
}