[llvm] r336428 - Added missing semicolon
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 6 07:18:37 PDT 2018
Hi Diogo,
Looks like your commit is causing buildbot failures, see:
http://green.lab.llvm.org/green/job/clang-stage1-cmake-RA-incremental/50537/
Cheers,
Sjoerd
________________________________
From: llvm-commits <llvm-commits-bounces at lists.llvm.org> on behalf of Diogo N. Sampaio via llvm-commits <llvm-commits at lists.llvm.org>
Sent: 06 July 2018 11:09:05
To: llvm-commits at lists.llvm.org
Subject: [llvm] r336428 - Added missing semicolon
Author: dnsampaio
Date: Fri Jul 6 03:09:04 2018
New Revision: 336428
URL: http://llvm.org/viewvc/llvm-project?rev=336428&view=rev
Log:
Added missing semicolon
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=336428&r1=336427&r2=336428&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Fri Jul 6 03:09:04 2018
@@ -6023,8 +6023,7 @@ SDValue DAGCombiner::foldRedundantShifte
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);
_______________________________________________
llvm-commits mailing list
llvm-commits at lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180706/bb677f12/attachment.html>
More information about the llvm-commits
mailing list