Skip to content

Commit

Permalink
Fix wording of method layout phase.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Apr 2, 2024
1 parent 2ddfbd8 commit b851a8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/reference-manual/native-image/BuildOutput.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ GraalVM Native Image: Generating 'helloworld' (executable)...
[4/8] Parsing methods... [*] (0.6s @ 0.75GB)
[5/8] Inlining methods... [***] (0.3s @ 0.32GB)
[6/8] Compiling methods... [**] (3.7s @ 0.60GB)
[7/8] Layouting methods... [*] (0.8s @ 0.83GB)
[7/8] Laying out methods... [*] (0.8s @ 0.83GB)
[8/8] Creating image... [**] (3.1s @ 0.58GB)
5.32MB (24.22%) for code area: 8,702 compilation units
7.03MB (32.02%) for image heap: 93,301 objects and 5 resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private enum BuildStage {
PARSING("Parsing methods", true, true),
INLINING("Inlining methods", true, false),
COMPILING("Compiling methods", true, true),
LAYOUTING("Layouting methods", true, true),
LAYING_OUT("Laying out methods", true, true),
CREATING("Creating image", true, true);

private static final int NUM_STAGES = values().length;
Expand Down Expand Up @@ -511,7 +511,7 @@ public ReporterClosable printCompiling() {
}

public ReporterClosable printLayouting() {
return print(TimerCollection.Registry.LAYOUT, BuildStage.LAYOUTING);
return print(TimerCollection.Registry.LAYOUT, BuildStage.LAYING_OUT);
}

// TODO: merge printCreationStart and printCreationEnd at some point (GR-35721).
Expand Down

0 comments on commit b851a8b

Please sign in to comment.