[PATCH] D138655: [clang-tidy] Fix `cppcoreguidelines-init-variables` for invalid vardecl
gehry via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 20 03:49:59 PST 2022
Sockke updated this revision to Diff 484210.
Sockke added a comment.
Added comments
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138655/new/
https://reviews.llvm.org/D138655
Files:
clang-tools-extra/clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables.cpp
Index: clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables.cpp
+++ clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables.cpp
@@ -1,6 +1,16 @@
-// RUN: %check_clang_tidy %s cppcoreguidelines-init-variables %t -- -- -fno-delayed-template-parsing -fexceptions
+// RUN: %check_clang_tidy %s cppcoreguidelines-init-variables -fix-errors %t -- -- -fno-delayed-template-parsing -fexceptions
// CHECK-FIXES: {{^}}#include <math.h>
+// Header file error causes stl container variable to be invalid int vardecl
+#include "unknown.h"
+// CHECK-MESSAGES: :[[@LINE-1]]:10: error: 'unknown.h' file not found [clang-diagnostic-error]
+
+namespace std {
+template <typename T>
+struct vector {
+ vector();
+};
+
// Ensure that function declarations are not changed.
void some_func(int x, double d, bool b, const char *p);
@@ -124,3 +134,13 @@
Fruit fruit;
// CHECK-MESSAGES: :[[@LINE-1]]:9: warning: variable 'fruit' is not initialized [cppcoreguidelines-init-variables]
}
+
+void test_clang_diagnostic_error() {
+ int a;
+ // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: variable 'a' is not initialized [cppcoreguidelines-init-variables]
+ // CHECK-FIXES: {{^}} int a = 0;{{$}}
+
+ // The stl object has been initialized
+ std::vector<int> arr;
+ // CHECK-FIXES-NOT: {{^}} std::vector<int> arr = 0;{{$}}
+}
Index: clang-tools-extra/clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp
===================================================================
--- clang-tools-extra/clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp
+++ clang-tools-extra/clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp
@@ -60,6 +60,9 @@
const ASTContext &Context = *Result.Context;
const SourceManager &Source = Context.getSourceManager();
+ // Header file error causes the stl container variable to be an invalid int vardecl
+ if (MatchedDecl->isInvalidDecl())
+ return;
// We want to warn about cases where the type name
// comes from a macro like this:
//
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138655.484210.patch
Type: text/x-patch
Size: 2165 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221220/099776eb/attachment.bin>
More information about the cfe-commits
mailing list