Commit e3a8eb51 authored by Igor Sheludko's avatar Igor Sheludko Committed by Commit Bot

[builtins] Fix wrong use of CSA::Word32Not().

... by using CSA::Word32BinaryNot() instead.

Change-Id: I04e2ceafc205d5667b92cfa276faed741ad3a917
Reviewed-on: https://chromium-review.googlesource.com/525695Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Commit-Queue: Igor Sheludko <ishell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#45730}
parent c4eeb553
......@@ -649,8 +649,8 @@ Node* ConstructorBuiltinsAssembler::EmitFastCloneShallowObject(
Goto(&done);
BIND(&if_copy_elements);
CSA_ASSERT(this,
Word32Not(IsFixedCOWArrayMap(LoadMap(boilerplate_elements))));
CSA_ASSERT(this, Word32BinaryNot(
IsFixedCOWArrayMap(LoadMap(boilerplate_elements))));
var_elements.Bind(CopyFixedArrayBase(boilerplate_elements));
Goto(&done);
BIND(&done);
......
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