| Index: src/compiler/simplified-lowering.cc
|
| diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
|
| index 26b6bd35df8ed83fcf986408de3a8cf0057de532..20c8a567dba11c77fbe0fc824ce8ad204c12e729 100644
|
| --- a/src/compiler/simplified-lowering.cc
|
| +++ b/src/compiler/simplified-lowering.cc
|
| @@ -456,8 +456,8 @@ class RepresentationSelector {
|
| if (lower()) {
|
| MachineTypeUnion input = GetInfo(node->InputAt(0))->output;
|
| if (input & kRepBit) {
|
| - // BooleanNot(x: kRepBit) => WordEqual(x, #0)
|
| - node->set_op(lowering->machine()->WordEqual());
|
| + // BooleanNot(x: kRepBit) => Word32Equal(x, #0)
|
| + node->set_op(lowering->machine()->Word32Equal());
|
| node->AppendInput(jsgraph_->zone(), jsgraph_->Int32Constant(0));
|
| } else {
|
| // BooleanNot(x: kRepTagged) => WordEqual(x, #false)
|
|
|