aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Holmen <mikael.holmen@ericsson.com>2018-08-21 07:22:45 +0000
committerMikael Holmen <mikael.holmen@ericsson.com>2018-08-21 07:22:45 +0000
commit5e499dd14cc6493f0bd62bc6b95580837fb4303f (patch)
tree27627922341bd4380d0c20db64f1ac344c6e95b0
parent3025b837ed076a70786893c4a96a4389c53c487e (diff)
Removed unused variable [NFC]linaro-local/ci/llvm-kernel-aarch64-tested
The compiler warned: ../tools/clang/lib/Sema/SemaType.cpp:6788:31: error: unused variable 'AT' [-Werror,-Wunused-variable] if (const AttributedType *AT = S.getCallingConvAttributedType(type)) { ^ 1 error generated. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@340251 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Sema/SemaType.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp
index bad6616249..71437f6e2c 100644
--- a/lib/Sema/SemaType.cpp
+++ b/lib/Sema/SemaType.cpp
@@ -6785,7 +6785,7 @@ static bool handleFunctionTypeAttr(TypeProcessingState &state, ParsedAttr &attr,
if (CCOld != CC) {
// Error out on when there's already an attribute on the type
// and the CCs don't match.
- if (const AttributedType *AT = S.getCallingConvAttributedType(type)) {
+ if (S.getCallingConvAttributedType(type)) {
S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
<< FunctionType::getNameForCallConv(CC)
<< FunctionType::getNameForCallConv(CCOld);