[PATCH] D66074: [clangd] Drop diags from non-written #include.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 12 02:31:04 PDT 2019
hokein updated this revision to Diff 214590.
hokein marked an inline comment as done.
hokein added a comment.
Add a comment.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66074/new/
https://reviews.llvm.org/D66074
Files:
clang-tools-extra/clangd/Diagnostics.cpp
clang-tools-extra/clangd/unittests/DiagnosticsTests.cpp
Index: clang-tools-extra/clangd/unittests/DiagnosticsTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/DiagnosticsTests.cpp
+++ clang-tools-extra/clangd/unittests/DiagnosticsTests.cpp
@@ -948,6 +948,15 @@
EXPECT_THAT(TU.build().getDiagnostics(), UnorderedElementsAre());
}
+TEST(IgnoreDiags, FromNonWrittenInclude) {
+ TestTU TU = TestTU::withCode("");
+ TU.ExtraArgs.push_back("--include=a.h");
+ TU.AdditionalFiles = {{"a.h", "void main();"}};
+ // The diagnostic "main must return int" is from the header, we don't attempt
+ // to render it in the main file as there is no written location there.
+ EXPECT_THAT(TU.build().getDiagnostics(), UnorderedElementsAre());
+}
+
} // namespace
} // namespace clangd
Index: clang-tools-extra/clangd/Diagnostics.cpp
===================================================================
--- clang-tools-extra/clangd/Diagnostics.cpp
+++ clang-tools-extra/clangd/Diagnostics.cpp
@@ -122,8 +122,12 @@
return SM.getIncludeLoc(SM.getFileID(SLoc));
};
for (auto IncludeLocation = GetIncludeLoc(DiagLoc); IncludeLocation.isValid();
- IncludeLocation = GetIncludeLoc(IncludeLocation))
- IncludeInMainFile = IncludeLocation;
+ IncludeLocation = GetIncludeLoc(IncludeLocation)) {
+ if (clangd::isInsideMainFile(IncludeLocation, SM)) {
+ IncludeInMainFile = IncludeLocation;
+ break;
+ }
+ }
if (IncludeInMainFile.isInvalid())
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66074.214590.patch
Type: text/x-patch
Size: 1505 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190812/a57949c6/attachment.bin>
More information about the cfe-commits
mailing list