]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr56990.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr56990.c
CommitLineData
829d0168 1/* PR sanitizer/56990 */
100a5180 2/* { dg-do compile { target { { i?86-*-linux* x86_64-*-linux* } && lp64 } } } */
829d0168
MP
3/* { dg-options "-fsanitize=thread" } */
4
5struct S{};
6
7void foo(struct S *p)
8{
9 *p = (struct S){};
10}