From 00eaa8ea09a001b61346cf6c0418b62dde08d29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20W=C3=B6gerer?= Date: Thu, 27 Apr 2023 16:57:20 +0200 Subject: [PATCH] Make -H:-OmitInlinedMethodDebugLineInfo the default --- .../src/com/oracle/svm/core/SubstrateOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java b/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java index 1529ea9820a7..8c1fda2f4521 100644 --- a/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java +++ b/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java @@ -684,7 +684,7 @@ private static void validateStripDebugInfo(HostedOptionKey optionKey) { } @Option(help = "Omit generation of DebugLineInfo originating from inlined methods") // - public static final HostedOptionKey OmitInlinedMethodDebugLineInfo = new HostedOptionKey<>(true); + public static final HostedOptionKey OmitInlinedMethodDebugLineInfo = new HostedOptionKey<>(false); @Option(help = "Specify maximum inlining depth to consider when building DebugCodeInfo") // public static final HostedOptionKey DebugCodeInfoMaxDepth = new HostedOptionKey<>(Integer.MAX_VALUE);