Commit 7fea25f0 authored by epertoso's avatar epertoso Committed by Commit bot

Marks the label associated with the runtime call in CodeStubAssembler::Allocate as deferred.

BUG=593359
LOG=y

Review URL: https://codereview.chromium.org/1779713005

Cr-Commit-Position: refs/heads/master@{#34666}
parent 561e1629
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment