From: Daniel Sanders Date: Thu, 20 Jul 2017 13:10:17 +0000 (+0000) Subject: [globalisel][tablegen] Fix an unintended fallthrough that is currently unreachable... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a512afe3845d2f285ded36b2e19ed71616f5b0c;p=llvm [globalisel][tablegen] Fix an unintended fallthrough that is currently unreachable. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308613 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h b/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h index 322ddce2295..b3d7942196a 100644 --- a/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h +++ b/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h @@ -243,6 +243,7 @@ bool InstructionSelector::executeMatchTable( DEBUG(dbgs() << CurrentIdx << ": GIM_Reject"); if (handleReject() == RejectAndGiveUp) return false; + break; case GIR_MutateOpcode: { int64_t OldInsnID = MatchTable[CurrentIdx++];