diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2015-04-13 20:03:08 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2015-04-13 20:03:08 +0000 |
commit | d6f241d53b1219781768393c64a4ff342d35394c (patch) | |
tree | 03f0b1d1f061be44bb2e99338d76d399e015452a | |
parent | f2a39a7b4e7028e4eefbffd6165a8e59d4df7c5d (diff) | |
download | bcm5719-llvm-d6f241d53b1219781768393c64a4ff342d35394c.tar.gz bcm5719-llvm-d6f241d53b1219781768393c64a4ff342d35394c.zip |
GCC complains thusly: "attributes at the beginning of statement are ignored [-Werror=attributes]". Very well then! NFC
llvm-svn: 234788
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index 11094e99397..fb4c6142fa6 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/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: { |