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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
lto
/
pr40725_1.c
blob
7de46b8a988afaea01b92b93b1f3fccdf633909b
1
typedef
struct
c_type_1
2
{
3
int
j
;
4
}
c_type_1_t
;
5
void
sub0
(
c_type_1_t
*
c_type
,
int
expected_j
);
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
c_type_1_t c_type
;
9
c_type
.
j
=
11
;
10
sub0
(&
c_type
,
c_type
.
j
);
11
return
0
;
12
}