Skip to content

Commit 91f14e3

Browse files
committed
NFC: Address -Wimplicit-fallthrough warnings.
1 parent 2990c65 commit 91f14e3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/SIL/IR/SILPrinter.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2533,10 +2533,12 @@ class SILPrinter : public SILInstructionVisitor<SILPrinter> {
25332533
switch (MDI->dependenceKind()) {
25342534
case MarkDependenceKind::Unresolved:
25352535
*this << "[unresolved] ";
2536+
break;
25362537
case MarkDependenceKind::Escaping:
25372538
break;
25382539
case MarkDependenceKind::NonEscaping:
25392540
*this << "[nonescaping] ";
2541+
break;
25402542
}
25412543
*this << getIDAndType(MDI->getValue()) << " on "
25422544
<< getIDAndType(MDI->getBase());

0 commit comments

Comments
 (0)