forked from OSchip/llvm-project
[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:
parent
442702a9f9
commit
5c287f751a
|
@ -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;
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue