analyzer: remove xfail [PR98223]
authorDavid Malcolm <dmalcolm@redhat.com>
Wed, 6 Jan 2021 01:51:50 +0000 (20:51 -0500)
committerDavid Malcolm <dmalcolm@redhat.com>
Wed, 6 Jan 2021 01:51:50 +0000 (20:51 -0500)
The bogus leak message went away after
fcae5121154d1c3382b056bcc2c563cedac28e74 (aka "Hybrid EVRP and
testcases") due to that patch improving a phi node in the gimple input
to the analyzer.

gcc/testsuite/ChangeLog:
PR analyzer/98223
* gcc.dg/analyzer/pr94851-1.c: Remove xfail.

gcc/testsuite/gcc.dg/analyzer/pr94851-1.c

index da79652c570fe7a6170bdae6e3bc6ec46236ef0a..34960e264cd7f7094d652c27cf8668a6552fa983 100644 (file)
@@ -40,8 +40,7 @@ int pamark(void) {
       last->m_next = p;
   }
 
-  p->m_name = (char)c; /* { dg-bogus "leak of 'p'" "bogus leak" { xfail *-*-* } } */
-  // TODO(xfail): related to PR analyzer/97072 and PR analyzer/97074
+  p->m_name = (char)c; /* { dg-bogus "leak of 'p'" "bogus leak" } */
 
   return 1;
 }