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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr43084.c
blob
dc75982f4573271bdde1d90d0f3611abc8599b6d
1
/* PR debug/43084 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -fwhole-program -fcompare-debug" } */
4
5
struct
S
6
{
7
int
a
;
8
};
9
10
int
11
main
()
12
{
13
struct
S s
;
14
struct
S
*
p
= &
s
;
15
return
p
->
a
;
16
}