You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/SwiftOptions/Options.swift
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -336,7 +336,7 @@ extension Option {
336
336
publicstaticletglineTablesOnly:Option=Option("-gline-tables-only",.flag, attributes:[.frontend], helpText:"Emit minimal debug info for backtraces only", group:.g)
publicstaticletgroupInfoPath:Option=Option("-group-info-path",.separate, attributes:[.helpHidden,.frontend,.noDriver], helpText:"The path to collect the group information of the compiled module")
339
-
publicstaticletdebugOnSil:Option=Option("-gsil",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Write the SIL into a file and generate debug-info to debug on SIL level.")
339
+
publicstaticletlegacyGsil:Option=Option("-gsil",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Deprecated, use '-sil-based-debuginfo' instead")
340
340
publicstaticletg:Option=Option("-g",.flag, attributes:[.frontend], helpText:"Emit debug info. This is the preferred setting for debugging with LLDB.", group:.g)
341
341
publicstaticlethelpHidden:Option=Option("-help-hidden",.flag, attributes:[.helpHidden,.frontend], helpText:"Display available options, including hidden options")
342
342
publicstaticlethelpHidden_:Option=Option("--help-hidden",.flag, alias:Option.helpHidden, attributes:[.helpHidden,.frontend], helpText:"Display available options, including hidden options")
publicstaticletshowDiagnosticsAfterFatal:Option=Option("-show-diagnostics-after-fatal",.flag, attributes:[.frontend,.noDriver], helpText:"Keep emitting subsequent diagnostics after a fatal error")
507
+
publicstaticletdebugOnSil:Option=Option("-sil-based-debuginfo",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Write the SIL into a file and generate debug-info to debug on SIL level.")
507
508
publicstaticletsilDebugSerialization:Option=Option("-sil-debug-serialization",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Do not eliminate functions in Mandatory Inlining/SILCombine dead functions. (for debugging only)")
508
509
publicstaticletsilInlineCallerBenefitReductionFactor:Option=Option("-sil-inline-caller-benefit-reduction-factor",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<2>", helpText:"Controls the aggressiveness of performance inlining in -Osize mode by reducing the base benefits of a caller (lower value permits more inlining!)")
509
510
publicstaticletsilInlineThreshold:Option=Option("-sil-inline-threshold",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<50>", helpText:"Controls the aggressiveness of performance inlining")
0 commit comments