We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de34abe commit 77ee27aCopy full SHA for 77ee27a
SwiftCompilerSources/Sources/Optimizer/Utilities/LocalVariableUtils.swift
@@ -158,7 +158,7 @@ struct LocalVariableAccess: CustomStringConvertible {
158
str += "deadEnd"
159
}
160
if let inst = instruction {
161
- str += "\(inst)"
+ str += ", \(inst)"
162
163
return str
164
@@ -249,6 +249,7 @@ class LocalVariableAccessInfo: CustomStringConvertible {
249
250
var description: String {
251
return "assign: \(_isFullyAssigned == nil ? "unknown" : String(describing: _isFullyAssigned!)), "
252
+ + "hasEscaped: \(hasEscaped == nil ? "unknown" : String(describing: hasEscaped!)), "
253
+ "\(access)"
254
255
0 commit comments