Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
opt66.adb
blob: 94a1790737c18df7a8dca22e9dcce0035dd0cda1 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
--
{
dg
-
options
"-O"
}
procedure
Opt66
(
I
:
Integer
)
is
E
:
exception
;
begin
if
I
=
0
then
raise
E
;
end
if
;
Opt66
(
I
-
I
/
abs
(
I
));
exception
when
others
=>
null
;
end
;