Index: src/compiler/int64-lowering.cc |
diff --git a/src/compiler/int64-lowering.cc b/src/compiler/int64-lowering.cc |
index 3ea950785e95059fcd7119d8891d95071c921174..19db874ca696ddbacba99a13f48c79d6bd389415 100644 |
--- a/src/compiler/int64-lowering.cc |
+++ b/src/compiler/int64-lowering.cc |
@@ -12,6 +12,7 @@ |
#include "src/compiler/node-properties.h" |
#include "src/compiler/node.h" |
+#include "src/compiler/wasm-compiler.h" |
#include "src/objects-inl.h" |
#include "src/wasm/wasm-module.h" |
#include "src/zone/zone.h" |
@@ -296,8 +297,8 @@ void Int64Lowering::LowerNode(Node* node) { |
(descriptor->ReturnCount() == 1 && |
descriptor->GetReturnType(0) == MachineType::Int64())) { |
// We have to adjust the call descriptor. |
- const Operator* op = common()->Call( |
- wasm::ModuleEnv::GetI32WasmCallDescriptor(zone(), descriptor)); |
+ const Operator* op = |
+ common()->Call(GetI32WasmCallDescriptor(zone(), descriptor)); |
NodeProperties::ChangeOp(node, op); |
} |
if (descriptor->ReturnCount() == 1 && |