Index: src/compiler/code-stub-assembler.cc |
diff --git a/src/compiler/code-stub-assembler.cc b/src/compiler/code-stub-assembler.cc |
index ac10a98c5c0fc10b6aca5ebc258924806a0c3e1e..4aac16bd1492480472cd51da9798b4bc94be05c1 100644 |
--- a/src/compiler/code-stub-assembler.cc |
+++ b/src/compiler/code-stub-assembler.cc |
@@ -287,7 +287,8 @@ Node* CodeStubAssembler::AllocateRawUnaligned(Node* size_in_bytes, |
Node* limit = Load(MachineType::Pointer(), limit_address); |
// If there's not enough space, call the runtime. |
- RawMachineLabel runtime_call, no_runtime_call, merge_runtime; |
+ RawMachineLabel runtime_call(RawMachineLabel::kDeferred), no_runtime_call, |
+ merge_runtime; |
raw_assembler_->Branch( |
raw_assembler_->IntPtrLessThan(IntPtrSub(limit, top), size_in_bytes), |
&runtime_call, &no_runtime_call); |