Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 9701b12cacf49ac3e442c9e7d47d4c68f09e0ae0..f50adbd5ed10f742dd96a1f064a949d951fa9072 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -931,6 +931,11 @@ Bounds Typer::Visitor::TypeInt32Mul(Node* node) { |
} |
+Bounds Typer::Visitor::TypeInt32MulHigh(Node* node) { |
+ return Bounds(Type::Integral32()); |
+} |
+ |
+ |
Bounds Typer::Visitor::TypeInt32Div(Node* node) { |
return Bounds(Type::Integral32()); |
} |