[AddressSanitizer] assert(false) -> llvm_unreachable and remove return.

llvm-svn: 253591
This commit is contained in:
Davide Italiano 2015-11-19 19:28:23 +00:00
parent 48401eb18a
commit 193c4edffb
1 changed files with 2 additions and 4 deletions

View File

@ -1216,10 +1216,8 @@ bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
bool TAAParsed;
std::string ErrorCode = MCSectionMachO::ParseSectionSpecifier(
Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);
if (!ErrorCode.empty()) {
assert(false && "Invalid section specifier.");
return false;
}
if (!ErrorCode.empty())
llvm_unreachable("Invalid section specifier.");
// Ignore the globals from the __OBJC section. The ObjC runtime assumes
// those conform to /usr/lib/objc/runtime.h, so we can't add redzones to