Skip to content

Commit 0312804

Browse files
committed
WalkUtils: fix indentation
1 parent 88a7ee0 commit 0312804

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SwiftCompilerSources/Sources/Optimizer/Utilities/WalkUtils.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ extension ValueDefUseWalker {
349349
return unmatchedPath(value: operand, path: path)
350350
}
351351
case is BeginBorrowInst, is CopyValueInst, is MoveValueInst,
352-
is UpcastInst, is UncheckedRefCastInst, is EndCOWMutationInst, is EndInitLetRefInst,
353-
is RefToBridgeObjectInst, is BridgeObjectToRefInst, is MarkUnresolvedNonCopyableValueInst:
352+
is UpcastInst, is UncheckedRefCastInst, is EndCOWMutationInst, is EndInitLetRefInst,
353+
is RefToBridgeObjectInst, is BridgeObjectToRefInst, is MarkUnresolvedNonCopyableValueInst:
354354
return walkDownUses(ofValue: (instruction as! SingleValueInstruction), path: path)
355355
case let beginDealloc as BeginDeallocRefInst:
356356
if operand.index == 0 {
@@ -660,9 +660,9 @@ extension ValueUseDefWalker {
660660
case let oer as OpenExistentialRefInst:
661661
return walkUp(value: oer.existential, path: path.push(.existential, index: 0))
662662
case is BeginBorrowInst, is CopyValueInst, is MoveValueInst,
663-
is UpcastInst, is UncheckedRefCastInst, is EndCOWMutationInst, is EndInitLetRefInst,
664-
is BeginDeallocRefInst,
665-
is RefToBridgeObjectInst, is BridgeObjectToRefInst, is MarkUnresolvedNonCopyableValueInst:
663+
is UpcastInst, is UncheckedRefCastInst, is EndCOWMutationInst, is EndInitLetRefInst,
664+
is BeginDeallocRefInst,
665+
is RefToBridgeObjectInst, is BridgeObjectToRefInst, is MarkUnresolvedNonCopyableValueInst:
666666
return walkUp(value: (def as! Instruction).operands[0].value, path: path)
667667
case let arg as BlockArgument:
668668
if arg.isPhiArgument {

0 commit comments

Comments
 (0)