Skip to content

Commit 384877f

Browse files
committed
Enable debug info serialization by default
1 parent 5c678ff commit 384877f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/swift/Frontend/FrontendOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class FrontendOptions {
125125
/// Include local definitions/references in the index data.
126126
bool IndexIncludeLocals = false;
127127

128-
bool SerializeDebugInfoSIL = false;
128+
bool SerializeDebugInfoSIL = true;
129129
/// If building a module from interface, ignore compiler flags
130130
/// specified in the swiftinterface.
131131
bool ExplicitInterfaceBuild = false;

include/swift/Serialization/SerializationOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ namespace swift {
151151

152152
bool AutolinkForceLoad = false;
153153
bool SerializeAllSIL = false;
154-
bool SerializeDebugInfoSIL = false;
154+
bool SerializeDebugInfoSIL = true;
155155
bool SerializeOptionsForDebugging = false;
156156
bool IsSIB = false;
157157
bool DisableCrossModuleIncrementalInfo = false;

0 commit comments

Comments
 (0)