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
/
tree-ssa
/
forwprop-38.c
blob
e016c825b3c5227dd0a0468f0478355535548aa2
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-forwprop1" } */
3
4
struct
A
{
int
a
[
1
]; };
5
6
void
f
(
struct
A
*
p
)
7
{
8
void
*
q
=
p
->
a
;
9
if
(
p
!=
q
)
10
__builtin_abort
();
11
}
12
13
/* { dg-final { scan-tree-dump-not "abort" "forwprop1" } } */