We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 442702a commit 5c287f7Copy full SHA for 5c287f7
clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
@@ -174,7 +174,7 @@ class DeadStoreObs : public LiveVariables::Observer {
174
175
// Files autogenerated by DriverKit IIG contain some dead stores that
176
// we don't want to report.
177
- if (Data.startswith("/* iig generated from"))
+ if (Data.startswith("/* iig"))
178
return true;
179
180
return false;
clang/test/Analysis/deadstores-driverkit.cpp
@@ -1,4 +1,4 @@
1
-/* iig generated from SomethingSomething.iig */
+/* iig(DriverKit-60) generated from SomethingSomething.iig */
2
3
// The comment above is the whole point of the test.
4
// That's how the suppression works.
0 commit comments