Index: src/compiler/representation-change.h |
diff --git a/src/compiler/representation-change.h b/src/compiler/representation-change.h |
index 5128e7975e2e6665c673396fe1120bf46b4d2a13..98de04d3a5fe916fedfe2e736046d38828633aa9 100644 |
--- a/src/compiler/representation-change.h |
+++ b/src/compiler/representation-change.h |
@@ -331,6 +331,12 @@ class RepresentationChanger { |
return machine()->Int32Div(); |
case IrOpcode::kNumberModulus: |
return machine()->Int32Mod(); |
+ case IrOpcode::kNumberBitwiseOr: |
+ return machine()->Word32Or(); |
+ case IrOpcode::kNumberBitwiseXor: |
+ return machine()->Word32Xor(); |
+ case IrOpcode::kNumberBitwiseAnd: |
+ return machine()->Word32And(); |
case IrOpcode::kNumberEqual: |
return machine()->Word32Equal(); |
case IrOpcode::kNumberLessThan: |