repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr56990.c
blob
c857785c834d2ef369aaaf037eda29d5ddc46815
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
}