Skip to content

Commit a7e6f8b

Browse files
committed
Fix minor issue with CompilerPass.java
* This doesn't affect correctness, but use the right signature.
1 parent a87c3a5 commit a7e6f8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/jruby/ir/passes/CompilerPass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private Object makeSureDependencyHasRunOnce(Class<? extends CompilerPass> passCl
109109
Object data = pass.previouslyRun(scope);
110110

111111
if (data == null) {
112-
data = pass.run(scope, childScope);
112+
data = pass.run(scope, false, childScope);
113113
} else {
114114
for (CompilerPassListener listener: scope.getManager().getListeners()) {
115115
listener.alreadyExecuted(pass, scope, data, childScope);

0 commit comments

Comments
 (0)