1 /* { dg-shouldfail "tsan" } */
2 /* { dg-additional-options "-fno-ipa-modref" } */
6 void __attribute__((noinline
)) foo(int *mem
) {
10 void __attribute__((noinline
)) bar(int *mem
) {
15 int *mem
= (int*)malloc(100);
21 /* { dg-output "WARNING: ThreadSanitizer: heap-use-after-free.*(\n|\r\n|\r)" } */
22 /* { dg-output " Write of size 4.* by main thread:(\n|\r\n|\r)" } */
23 /* { dg-output " #0 bar.*" } */
24 /* { dg-output " #1 main .*" } */
25 /* { dg-output " Previous write of size 8 at .* by main thread:(\n|\r\n|\r)" } */
26 /* { dg-output " #0 free .*" } */
27 /* { dg-output " #\(1|2\) foo.*(\n|\r\n|\r)" } */
28 /* { dg-output " #\(2|3\) main .*" } */