ASAN: emit line information of stack variables.
[official-gcc.git] / gcc / testsuite / gcc.dg / asan / use-after-scope-10.c
blobe4b986ec0719ab2e2055b1bb40bdd2da0f988744
1 // { dg-do run }
2 // { dg-shouldfail "asan" }
3 // { dg-skip-if "" { *-*-* } { "*" } { "-O2" } }
4 // { dg-additional-options "-fdump-tree-asan1" }
6 int
7 main (int argc, char **argv)
9 int *ptr = 0;
12 int a;
13 ptr = &a;
14 *ptr = 12345;
17 *ptr = 12345;
18 return *ptr;
21 // { dg-output "ERROR: AddressSanitizer: stack-use-after-scope on address.*(\n|\r\n|\r)" }
22 // { dg-output "WRITE of size .*" }
23 // { dg-output ".*'a' \\(line 12\\) <== Memory access at offset \[0-9\]* is inside this variable.*" }