(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
disabling.c
       1  /* Verify that we can override -fanalyzer with -fno-analyzer.  */
       2  /* { dg-additional-options "-fno-analyzer" } */
       3  
       4  #include <stdlib.h>
       5  
       6  void test (void *ptr)
       7  {
       8    free (ptr);
       9    free (ptr); /* { dg-bogus "free" } */
      10  }