From 3a512afe3845d2f285ded36b2e19ed71616f5b0c Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Thu, 20 Jul 2017 13:10:17 +0000 Subject: [PATCH] [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 --- include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h | 1 + 1 file changed, 1 insertion(+) 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++]; -- 2.40.0