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
Add qdf24xx base tuning support.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr48063.c
blob
d861bf04c801e881a7bcc26bccfd65b90844447b
1
/* PR tree-optimization/48063 */
2
/* { dg-do compile } */
3
/* { dg-options "-fno-early-inlining" } */
4
5
extern
void
abort
(
void
);
6
static void
bar
();
7
8
void
9
foo
()
10
{
11
bar
(
1
);
12
}
13
14
static void
15
bar
(
double
i
)
16
{
17
if
(
i
)
18
abort
();
19
}