Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / c-c++-common / asan / no-instrument-writes.c
blob45370a2e56cb3d07c7e9ba71551170c6a930a39e
1 /* { dg-do compile } */
2 /* { dg-options "--param asan-instrument-writes=0" } */
4 volatile int ten = 10;
6 int main() {
7 volatile char x[10];
8 x[ten] = 1;
9 return 0;
12 /* { dg-final { scan-assembler-not "__asan_store" } } */