forked from OSchip/llvm-project
[ProfileData] Fix a warning
This patch fixes: llvm/lib/ProfileData/InstrProf.cpp:146:3: error: default label in switch which covers all enumeration values [-Werror,-Wcovered-switch-default]
This commit is contained in:
parent
7cd273c339
commit
a340d47419
|
@ -143,9 +143,6 @@ static std::string getInstrProfErrString(instrprof_error Err,
|
|||
OS << "profile uses zlib compression but the profile reader was built "
|
||||
"without zlib support";
|
||||
break;
|
||||
default:
|
||||
llvm_unreachable("A value of instrprof_error has no message.");
|
||||
break;
|
||||
}
|
||||
|
||||
// If optional error message is not empty, append it to the message.
|
||||
|
|
Loading…
Reference in New Issue