(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
hwasan/
macro-definition.c
       1  /* { dg-do compile } */
       2  extern void testfunc(int);
       3  int foo()
       4  {
       5  #ifndef __SANITIZE_HWADDRESS__
       6    testfunc(1);
       7  #endif
       8    return 1;
       9  }
      10  
      11  /* { dg-final { scan-assembler-not "testfunc" } } */