diff options
Diffstat (limited to 'src/passes/SSAify.cpp')
-rw-r--r-- | src/passes/SSAify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/SSAify.cpp b/src/passes/SSAify.cpp index b2e75fce3..5271087a9 100644 --- a/src/passes/SSAify.cpp +++ b/src/passes/SSAify.cpp @@ -57,7 +57,7 @@ struct SSAify : public Pass { void runOnFunction(PassRunner* runner, Module* module_, Function* func_) override { module = module_; func = func_; - LocalGraph graph(func, module); + LocalGraph graph(func); // create new local indexes, one for each set createNewIndexes(graph); // we now know the sets for each get, and can compute get indexes and handle phis |