(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
asan/
no-instrument-writes.c
       1  /* { dg-do compile } */
       2  /* { dg-options "--param asan-instrument-writes=0" } */
       3  
       4  volatile int ten = 10;
       5  
       6  int main() {
       7    volatile char x[10];
       8    x[ten] = 1;
       9    return 0;
      10  }
      11  
      12  /* { dg-final { scan-assembler-not "__asan_store" } } */