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
Fix PR48484
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20001108-1.c
blob
682257fdb0951c90096aa9db32939b032f7f1168
1
/* { dg-do run } */
2
/* { dg-options "-O2 -fomit-frame-pointer" } */
3
4
extern
void
abort
(
void
);
5
extern
void
exit
(
int
);
6
7
void
die
(
long
)
__attribute__
((
noreturn
));
8
9
void
die
(
long
e
)
10
{
11
abort
();
12
for
(;;);
13
}
14
15
long
foo
(
double
i
)
16
{
17
if
(
i
!=
2.0
)
18
abort
();
19
return
26
;
20
}
21
22
long
bar
(
long
i
,
double
x
)
23
{
24
if
(
x
<
0
)
die
(
1
);
25
return
foo
(
x
);
26
}
27
28
main
()
29
{
30
if
(
bar
(
0
,
2.0
) !=
26
)
31
abort
();
32
exit
(
0
);
33
}