Fix improperly formed assert() call.

llvm-svn: 142239
This commit is contained in:
Jim Grosbach 2011-10-17 20:22:59 +00:00
parent d39466760a
commit 2fbdcedbb1
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ long int MBlazeELFWriterInfo::computeRelocation(unsigned SymOffset,
if (RelTy == ELF::R_MICROBLAZE_32_PCREL || ELF::R_MICROBLAZE_64_PCREL)
return SymOffset - (RelOffset + 4);
else
assert("computeRelocation unknown for this relocation type");
assert(0 && "computeRelocation unknown for this relocation type");
return 0;
}