[PATCH] D126138: [clang-tidy] Fix #55134 (regression introduced by 5da7c04)
Salman Javed via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun May 22 03:12:56 PDT 2022
salman-javed-nz updated this revision to Diff 431223.
salman-javed-nz added a comment.
Add another test, to test the specific code sample in the GitHub issue (check=cppcoreguidelines-pro-type-member-init).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126138/new/
https://reviews.llvm.org/D126138
Files:
clang-tools-extra/clang-tidy/NoLintDirectiveHandler.cpp
clang-tools-extra/test/clang-tidy/infrastructure/nolint.cpp
Index: clang-tools-extra/test/clang-tidy/infrastructure/nolint.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/infrastructure/nolint.cpp
+++ clang-tools-extra/test/clang-tidy/infrastructure/nolint.cpp
@@ -1,5 +1,5 @@
// REQUIRES: static-analyzer
-// RUN: %check_clang_tidy %s google-explicit-constructor,clang-diagnostic-unused-variable,clang-analyzer-core.UndefinedBinaryOperatorResult,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays %t -- -extra-arg=-Wunused-variable -- -I%S/Inputs/nolint
+// RUN: %check_clang_tidy %s google-explicit-constructor,clang-diagnostic-unused-variable,clang-analyzer-core.UndefinedBinaryOperatorResult,modernize-avoid-c-arrays,cppcoreguidelines-avoid-c-arrays,cppcoreguidelines-pro-type-member-init %t -- -extra-arg=-Wunused-variable -- -I%S/Inputs/nolint
#include "trigger_warning.h"
void I(int& Out) {
@@ -96,6 +96,23 @@
#define MACRO_NOLINT class G { G(int i); }; // NOLINT
MACRO_NOLINT
+// Check that we can suppress diagnostics about macro arguments (as opposed to
+// diagnostics about the macro contents itself).
+#define MACRO_SUPPRESS_DIAG_FOR_ARG_1(X) \
+ class X { \
+ X(int i); /* NOLINT(google-explicit-constructor) */ \
+ };
+
+MACRO_SUPPRESS_DIAG_FOR_ARG_1(G1)
+
+#define MACRO_SUPPRESS_DIAG_FOR_ARG_2(X) \
+ struct X { /* NOLINT(cppcoreguidelines-pro-type-member-init) */ \
+ int a = 0; \
+ int b; \
+ };
+
+MACRO_SUPPRESS_DIAG_FOR_ARG_2(G2)
+
#define DOUBLE_MACRO MACRO(H) // NOLINT
DOUBLE_MACRO
@@ -116,4 +133,4 @@
int array3[10]; // NOLINT(cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays)
int array4[10]; // NOLINT(*-avoid-c-arrays)
-// CHECK-MESSAGES: Suppressed 34 warnings (34 NOLINT)
+// CHECK-MESSAGES: Suppressed 36 warnings (36 NOLINT)
Index: clang-tools-extra/clang-tidy/NoLintDirectiveHandler.cpp
===================================================================
--- clang-tools-extra/clang-tidy/NoLintDirectiveHandler.cpp
+++ clang-tools-extra/clang-tidy/NoLintDirectiveHandler.cpp
@@ -266,7 +266,7 @@
return true;
if (!DiagLoc.isMacroID())
return false;
- DiagLoc = SrcMgr.getImmediateMacroCallerLoc(DiagLoc);
+ DiagLoc = SrcMgr.getImmediateExpansionRange(DiagLoc).getBegin();
}
return false;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126138.431223.patch
Type: text/x-patch
Size: 2494 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220522/6703d7e3/attachment-0001.bin>
More information about the cfe-commits
mailing list