diff options
Diffstat (limited to 'src/passes/LogExecution.cpp')
-rw-r--r-- | src/passes/LogExecution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/LogExecution.cpp b/src/passes/LogExecution.cpp index aa7948963..98b74197a 100644 --- a/src/passes/LogExecution.cpp +++ b/src/passes/LogExecution.cpp @@ -47,7 +47,7 @@ struct LogExecution : public WalkerPass<PostWalker<LogExecution>> { void run(Module* module) override { loggerModule = getArgumentOrDefault("log-execution", ""); - super::run(module); + Super::run(module); } void visitLoop(Loop* curr) { curr->body = makeLogCall(curr->body); } |