Copy and pasteo.

llvm-svn: 116198
This commit is contained in:
Eric Christopher 2010-10-11 08:40:05 +00:00
parent 7ac602bc8e
commit e1bcb43bb9
1 changed files with 1 additions and 1 deletions

View File

@ -1138,7 +1138,7 @@ bool ARMFastISel::SelectSRem(const Instruction *I) {
LC = RTLIB::SREM_I64;
else if (VT == MVT::i128)
LC = RTLIB::SREM_I128;
assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
return ARMEmitLibcall(I, LC);
}