[analyzer] DeadStores: Update the crude suppression for files generated by IIG.

They changed the comments that we were looking for.

llvm-svn: 363995
This commit is contained in:
Artem Dergachev 2019-06-20 22:29:40 +00:00
parent 442702a9f9
commit 5c287f751a
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ public:
// Files autogenerated by DriverKit IIG contain some dead stores that // Files autogenerated by DriverKit IIG contain some dead stores that
// we don't want to report. // we don't want to report.
if (Data.startswith("/* iig generated from")) if (Data.startswith("/* iig"))
return true; return true;
return false; return false;

View File

@ -1,4 +1,4 @@
/* iig generated from SomethingSomething.iig */ /* iig(DriverKit-60) generated from SomethingSomething.iig */
// The comment above is the whole point of the test. // The comment above is the whole point of the test.
// That's how the suppression works. // That's how the suppression works.