From: Nick Lewycky Date: Mon, 13 Apr 2015 20:03:08 +0000 (+0000) Subject: GCC complains thusly: "attributes at the beginning of statement are ignored [-Werror... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55ba23d2fccfc7861671f710219097068d09a61f;p=oota-llvm.git GCC complains thusly: "attributes at the beginning of statement are ignored [-Werror=attributes]". Very well then! NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234788 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/InstCombine/InstCombineCalls.cpp b/lib/Transforms/InstCombine/InstCombineCalls.cpp index 11094e99397..fb4c6142fa6 100644 --- a/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -428,7 +428,7 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) { II->setArgOperand(1, LHS); return II; } - [[clang::fallthrough]]; + // fall through case Intrinsic::usub_with_overflow: case Intrinsic::ssub_with_overflow: {