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
Merge Ignore and Deprecated in .opt files.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr43084.c
blob
f70ed863e167727a52a639799602d2a31057c7e2
1
/* PR debug/43084 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -fwhole-program -fcompare-debug" } */
4
/* { dg-xfail-if "" { powerpc-ibm-aix* } } */
5
6
struct
S
7
{
8
int
a
;
9
};
10
11
int
12
main
()
13
{
14
struct
S s
;
15
struct
S
*
p
= &
s
;
16
return
p
->
a
;
17
}