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
match: Fix comment for `X != 0 ? X + ~0 : 0` transformation
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr52074.c
blob
92a2096f055670cb8d27a79b53a755265114f649
1
/* PR middle-end/52074 */
2
3
struct
S
{
const char
*
d
, *
e
; }
__attribute__
((
packed
));
4
5
void
6
foo
(
const char
**
p
,
struct
S
*
q
)
7
{
8
*
p
=
"abcdef"
;
9
q
->
d
=
"ghijk"
;
10
}