From 17be9949428b8d4273d04398a6f21ccff5bb4ecc Mon Sep 17 00:00:00 2001 From: "Diogo N. Sampaio" Date: Fri, 6 Jul 2018 10:09:04 +0000 Subject: [PATCH] Added missing semicolon llvm-svn: 336428 --- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 93eaf1e..59c9026 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -6023,8 +6023,7 @@ SDValue DAGCombiner::foldRedundantShiftedMasks(SDNode *AND) { break; } else // Same as SRL N0Opcode = ISD::SRL; - LLVM_FALLTHROUGH - /* fall-through */ + LLVM_FALLTHROUGH; case ISD::SRL: CanReduce = (EffectiveOtherMask.lshr(ShiftValue) == EffectiveMask) || (EffectiveMask.shl(ShiftValue) == EffectiveOtherMask); -- 2.7.4