File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
SwiftCompilerSources/Sources/Optimizer/FunctionPasses Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ private struct DiagnoseDependence {
159
159
/// Check that this use is inside the dependence scope.
160
160
func checkInScope( operand: Operand ) -> WalkResult {
161
161
if let range, !range. inclusiveRangeContains ( operand. instruction) {
162
- log ( " out-of-range: \( operand. instruction) " )
162
+ log ( " out-of-range error : \( operand. instruction) " )
163
163
reportError ( operand: operand, diagID: . lifetime_outside_scope_use)
164
164
return . abortWalk
165
165
}
@@ -168,7 +168,7 @@ private struct DiagnoseDependence {
168
168
}
169
169
170
170
func reportEscaping( operand: Operand ) {
171
- log ( " escaping: \( operand. instruction) " )
171
+ log ( " escaping error : \( operand. instruction) " )
172
172
reportError ( operand: operand, diagID: . lifetime_outside_scope_escape)
173
173
}
174
174
You can’t perform that action at this time.
0 commit comments