Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
c-c++-common
/
asan
/
no-instrument-writes.c
blob: 45370a2e56cb3d07c7e9ba71551170c6a930a39e [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "--param asan-instrument-writes=0" } */
volatile
int
ten
=
10
;
int
main
()
{
volatile
char
x
[
10
];
x
[
ten
]
=
1
;
return
0
;
}
/* { dg-final { scan-assembler-not "__asan_store" } } */