Skip to content

Commit

Permalink
Add getCompilationQueueSize for GraalInfoMorph
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Mar 17, 2022
1 parent 4dd5c91 commit 8197d00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private boolean ignoredForAOT(final Method method) {
return !ArrayUtils.containsEqual(new String[]{"getCanonicalName", "getName", "getSimpleName", "isInstance", "toString"}, methodName);
case "SubstrateTruffleRuntime":
case "GraalTruffleRuntime": // superclass of SubstrateTruffleRuntime
return !ArrayUtils.containsEqual(new String[]{"getCompileQueue", "getName", "toString"}, methodName);
return !ArrayUtils.containsEqual(new String[]{"getCompileQueue", "getCompilationQueueSize", "getName", "toString"}, methodName);
case "BackgroundCompileQueue":
return !ArrayUtils.containsEqual(new String[]{"getQueueSize", "toString"}, methodName);
default:
Expand Down

0 comments on commit 8197d00

Please sign in to comment.