Index: test/cctest/compiler/test-changes-lowering.cc |
diff --git a/test/cctest/compiler/test-changes-lowering.cc b/test/cctest/compiler/test-changes-lowering.cc |
index 5795754c455f2aba945f228f6cbc06933b87ad14..c69d917c46b5a36a206797c82c62013043adf628 100644 |
--- a/test/cctest/compiler/test-changes-lowering.cc |
+++ b/test/cctest/compiler/test-changes-lowering.cc |
@@ -33,7 +33,8 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
explicit ChangesLoweringTester(MachineType p0 = kMachNone) |
: GraphBuilderTester<ReturnType>(p0), |
javascript(this->zone()), |
- jsgraph(this->graph(), this->common(), &javascript, this->machine()), |
+ jsgraph(this->isolate(), this->graph(), this->common(), &javascript, |
+ this->machine()), |
function(Handle<JSFunction>::null()) {} |
JSOperatorBuilder javascript; |
@@ -127,7 +128,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
// Run the graph reducer with changes lowering on a single node. |
CompilationInfo info(this->isolate(), this->zone()); |
Linkage linkage(this->zone(), &info); |
- Typer typer(this->graph(), info.context()); |
+ Typer typer(this->isolate(), this->graph(), info.context()); |
typer.Run(); |
ChangeLowering change_lowering(&jsgraph, &linkage); |
SelectLowering select_lowering(this->graph(), this->common()); |