Skip to content

Commit

Permalink
Make -H:-OmitInlinedMethodDebugLineInfo the default
Browse files Browse the repository at this point in the history
  • Loading branch information
olpaw committed May 2, 2023
1 parent f79c0a5 commit 00eaa8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ private static void validateStripDebugInfo(HostedOptionKey<Boolean> optionKey) {
}

@Option(help = "Omit generation of DebugLineInfo originating from inlined methods") //
public static final HostedOptionKey<Boolean> OmitInlinedMethodDebugLineInfo = new HostedOptionKey<>(true);
public static final HostedOptionKey<Boolean> OmitInlinedMethodDebugLineInfo = new HostedOptionKey<>(false);

@Option(help = "Specify maximum inlining depth to consider when building DebugCodeInfo") //
public static final HostedOptionKey<Integer> DebugCodeInfoMaxDepth = new HostedOptionKey<>(Integer.MAX_VALUE);
Expand Down

0 comments on commit 00eaa8e

Please sign in to comment.