1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Copy and pasteo.

llvm-svn: 116198
This commit is contained in:
Eric Christopher 2010-10-11 08:40:05 +00:00
parent a412d25090
commit 019eeb9c55

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);
}