Index: src/x87/macro-assembler-x87.cc |
diff --git a/src/x87/macro-assembler-x87.cc b/src/x87/macro-assembler-x87.cc |
index 9ffbf9f34b20d6e4265fd1e3ab3939d70c3cd90f..84f2f38e3c882e37387c584f41578ee8278ab183 100644 |
--- a/src/x87/macro-assembler-x87.cc |
+++ b/src/x87/macro-assembler-x87.cc |
@@ -2810,19 +2810,15 @@ void MacroAssembler::Abort(BailoutReason reason) { |
} |
#endif |
- // Check if Abort() has already been initialized. |
- DCHECK(isolate()->builtins()->Abort()->IsHeapObject()); |
- |
- Move(edx, Smi::FromInt(static_cast<int>(reason))); |
- |
+ push(Immediate(reinterpret_cast<intptr_t>(Smi::FromInt(reason)))); |
// Disable stub call restrictions to always allow calls to abort. |
if (!has_frame_) { |
// We don't actually want to generate a pile of code for this, so just |
// claim there is a stack frame, without generating one. |
FrameScope scope(this, StackFrame::NONE); |
- Call(isolate()->builtins()->Abort(), RelocInfo::CODE_TARGET); |
+ CallRuntime(Runtime::kAbort); |
} else { |
- Call(isolate()->builtins()->Abort(), RelocInfo::CODE_TARGET); |
+ CallRuntime(Runtime::kAbort); |
} |
// will not return here |
int3(); |