diff options
author | Eric Christopher <echristo@apple.com> | 2010-10-11 08:40:05 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-10-11 08:40:05 +0000 |
commit | a1640d9ed9e0e9860614944f79a40ae66ecf56fc (patch) | |
tree | 61ad48f7711dd1194e1b88ad196a47a30c70da8b /lib | |
parent | dccd2c3c4346dd6625b80fcac9caa1be99731c9c (diff) | |
download | external_llvm-a1640d9ed9e0e9860614944f79a40ae66ecf56fc.zip external_llvm-a1640d9ed9e0e9860614944f79a40ae66ecf56fc.tar.gz external_llvm-a1640d9ed9e0e9860614944f79a40ae66ecf56fc.tar.bz2 |
Copy and pasteo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 7599a23..f778d1a 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -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); } |