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
* Mainline merge as of 2006-02-16 (@111136).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
zero-strct-5.c
blob
2dfbabe406a74647945a2c29aaeb23aa0914b765
1
/* Check that the inliner does not crash for this testcase.
2
gimple_expr can change the expr to NULL meaning that we
3
should not add any statement. */
4
struct
f
{};
5
struct
g1
{
struct
f l
;};
6
7
static
inline
void
g
(
struct
f a
,
int
i
){}
8
9
void
h
(
void
)
10
{
11
struct
g1 t
;
12
g
(
t
.
l
,
1
);
13
}
14