Index: src/mips/codegen-mips.cc |
diff --git a/src/mips/codegen-mips.cc b/src/mips/codegen-mips.cc |
index 10490e7a7b5e92aacde236c13252fc07d32809d4..3f74154f58a1a31240aae13fade3b2a029e682f7 100644 |
--- a/src/mips/codegen-mips.cc |
+++ b/src/mips/codegen-mips.cc |
@@ -289,7 +289,7 @@ void ElementsTransitionGenerator::GenerateSmiToDouble( |
__ SmiTag(t5); |
__ Or(t5, t5, Operand(1)); |
__ LoadRoot(at, Heap::kTheHoleValueRootIndex); |
- __ Assert(eq, kObjectFoundInSmiOnlyArray, at, Operand(t5)); |
+ __ Assert(eq, "object found in smi-only array", at, Operand(t5)); |
} |
__ sw(t0, MemOperand(t3)); // mantissa |
__ sw(t1, MemOperand(t3, kIntSize)); // exponent |
@@ -489,7 +489,7 @@ void StringCharLoadGenerator::Generate(MacroAssembler* masm, |
// Assert that we do not have a cons or slice (indirect strings) here. |
// Sequential strings have already been ruled out. |
__ And(at, result, Operand(kIsIndirectStringMask)); |
- __ Assert(eq, kExternalStringExpectedButNotFound, |
+ __ Assert(eq, "external string expected, but not found", |
at, Operand(zero_reg)); |
} |
// Rule out short external strings. |