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
Fortran: Suppress invalid finalization of artificial variable [PR116388]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
990324-1.c
blob
e275c8e6f091b9ae6de7c41ccd1a2075be8864c4
1
void
abort
(
void
);
2
void
exit
(
int
);
3
4
void
f
(
long
i
)
5
{
6
if
((
signed char
)
i
<
0
|| (
signed char
)
i
==
0
)
7
abort
();
8
else
9
exit
(
0
);
10
}
11
12
int
13
main
(
void
)
14
{
15
f
(
0xffffff01
);
16
}
17