1 /* { dg-do compile } */
2 /* { dg-options "-fno-sanitize=address -fsanitize=kernel-address --param asan-instrumentation-with-call-threshold=100 -ffat-lto-objects" } */
3 
4 void
foo(int * p)5 foo (int *p)
6 {
7   *p = 0;
8 }
9 
10 /* { dg-final { scan-assembler "__asan_report_store4_noabort" } } */
11 
12