Index: src/compiler/simplified-lowering.cc |
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc |
index ef65c9bc73e2331b40d563142ce2a8fd477992ff..939cd38d1461bd1ea0f8835891ea755d8658cb76 100644 |
--- a/src/compiler/simplified-lowering.cc |
+++ b/src/compiler/simplified-lowering.cc |
@@ -939,6 +939,9 @@ class RepresentationSelector { |
case IrOpcode::kWord32Equal: |
return VisitBinop(node, kRepWord32, kRepBit); |
+ case IrOpcode::kWord32Clz: |
+ return VisitUnop(node, kMachUint32, kMachUint32); |
+ |
case IrOpcode::kInt32Add: |
case IrOpcode::kInt32Sub: |
case IrOpcode::kInt32Mul: |