forked from OSchip/llvm-project
Fix some "control reaches end of non-void function" warnings
llvm-svn: 367095
This commit is contained in:
parent
cb5f7de448
commit
fcdceab7e1
|
@ -240,6 +240,7 @@ bool DYLDRendezvous::UpdateSOEntriesFromRemote() {
|
|||
case eNoAction:
|
||||
return false;
|
||||
}
|
||||
llvm_unreachable("Fully covered switch above!");
|
||||
}
|
||||
|
||||
bool DYLDRendezvous::UpdateSOEntries() {
|
||||
|
@ -256,6 +257,7 @@ bool DYLDRendezvous::UpdateSOEntries() {
|
|||
case eNoAction:
|
||||
return false;
|
||||
}
|
||||
llvm_unreachable("Fully covered switch above!");
|
||||
}
|
||||
|
||||
bool DYLDRendezvous::FillSOEntryFromModuleInfo(
|
||||
|
|
Loading…
Reference in New Issue