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