Fix some dyslexia in an assert message
authorJonathan Roelofs <jonathan@codesourcery.com>
Thu, 15 May 2014 02:24:50 +0000 (02:24 +0000)
committerJonathan Roelofs <jonathan@codesourcery.com>
Thu, 15 May 2014 02:24:50 +0000 (02:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208842 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp

index 7c178650a597cf29f5174838972eb960b40f324b..a4d13edd3ac773d41e24caae6597ebf7b1df82f9 100644 (file)
@@ -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 &&
     // 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 &&
     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 |
     uint64_t Intval = Opcodes[0] |
                       Opcodes[1] << 8 |
                       Opcodes[2] << 16 |