[llvm] r208842 - Fix some dyslexia in an assert message
Jonathan Roelofs
jonathan at codesourcery.com
Wed May 14 19:24:50 PDT 2014
Author: jroelofs
Date: Wed May 14 21:24:50 2014
New Revision: 208842
URL: http://llvm.org/viewvc/llvm-project?rev=208842&view=rev
Log:
Fix some dyslexia in an assert message
Modified:
llvm/trunk/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
Modified: llvm/trunk/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp?rev=208842&r1=208841&r2=208842&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp (original)
+++ llvm/trunk/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp Wed May 14 21:24:50 2014
@@ -1134,9 +1134,9 @@ void ARMELFStreamer::emitFnEnd() {
// the second word of exception index table entry. The size of the unwind
// opcodes should always be 4 bytes.
assert(PersonalityIndex == ARM::EHABI::AEABI_UNWIND_CPP_PR0 &&
- "Compact model must use __aeabi_cpp_unwind_pr0 as personality");
+ "Compact model must use __aeabi_unwind_cpp_pr0 as personality");
assert(Opcodes.size() == 4u &&
- "Unwind opcode size for __aeabi_cpp_unwind_pr0 must be equal to 4");
+ "Unwind opcode size for __aeabi_unwind_cpp_pr0 must be equal to 4");
uint64_t Intval = Opcodes[0] |
Opcodes[1] << 8 |
Opcodes[2] << 16 |
More information about the llvm-commits
mailing list