1 /* PR sanitizer/56990 */
2 /* { dg-do compile { target { { i?86-*-linux* x86_64-*-linux* } && lp64 } } } */
3 /* { dg-options "-fsanitize=thread" } */
4
5 struct S{};
6
7 void foo(struct S *p)
8 {
9 *p = (struct S){};
10 }