Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 452dd2cb3cf6fc6c0cc93e88f30bba975fdc7966..76a83c2da46400f254bc87e1d6f1544eb96b85dc 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -5324,14 +5324,6 @@ void FullCodeGenerator::EnterFinallyBlock() { |
__ mov(ip, Operand(pending_message_obj)); |
__ ldr(r1, MemOperand(ip)); |
__ push(r1); |
- |
- ExternalReference has_pending_message = |
- ExternalReference::address_of_has_pending_message(isolate()); |
- __ mov(ip, Operand(has_pending_message)); |
- STATIC_ASSERT(sizeof(bool) == 1); // NOLINT(runtime/sizeof) |
- __ ldrb(r1, MemOperand(ip)); |
- __ SmiTag(r1); |
- __ push(r1); |
} |
@@ -5339,14 +5331,6 @@ void FullCodeGenerator::ExitFinallyBlock() { |
DCHECK(!result_register().is(r1)); |
// Restore pending message from stack. |
__ pop(r1); |
- __ SmiUntag(r1); |
- ExternalReference has_pending_message = |
- ExternalReference::address_of_has_pending_message(isolate()); |
- __ mov(ip, Operand(has_pending_message)); |
- STATIC_ASSERT(sizeof(bool) == 1); // NOLINT(runtime/sizeof) |
- __ strb(r1, MemOperand(ip)); |
- |
- __ pop(r1); |
ExternalReference pending_message_obj = |
ExternalReference::address_of_pending_message_obj(isolate()); |
__ mov(ip, Operand(pending_message_obj)); |