Commit 9801429b authored by Peter Marshall's avatar Peter Marshall Committed by Commit Bot

[x87] Add missing push label in builtins.

BUG=v8:5974

Change-Id: If79ff5c29bea79ebf8019c4a8e72d2bd7c6b9029
Reviewed-on: https://chromium-review.googlesource.com/443448
Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#43247}
parent aeeacdda
......@@ -2846,7 +2846,7 @@ static void CheckSpreadAndPushToStack(MacroAssembler* masm) {
__ lea(esp, Operand(esp, 1 * kFloatSize));
__ mov(scratch, Immediate(0));
Label done, loop;
Label done, push, loop;
__ bind(&loop);
__ cmp(scratch, spread_len);
__ j(equal, &done, Label::kNear);
......
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