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
/
torture
/
inline-1.c
blob
30bf91ece885c61943f31fd81f8e05b3244872e6
1
/* { dg-do compile } */
2
/* { dg-options "--param ggc-min-heapsize=0 --param ggc-min-expand=0" } */
3
/* This used to ICE because we forgot to update the statement after folding
4
and the eh info. */
5
/* PR tree-opt/30385 */
6
7
int
f
(
void
);
8
static
inline
void
g
(
int
t
)
9
{
10
int
a
;
11
while
(
a
<
f
())
12
;
13
}
14
void
h
(
int
t
)
15
{
16
g
(
t
);
17
}