From 55ba23d2fccfc7861671f710219097068d09a61f Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Mon, 13 Apr 2015 20:03:08 +0000 Subject: [PATCH] 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 --- lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: { -- 2.34.1