remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr56990.c
1 /* PR sanitizer/56990 */
2 /* { dg-do compile { target { 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 }