blob: 82d02b4116f439d46ad078a1f43c446759a045bc [file] [log] [blame]
-- { dg-do link }
-- { dg-options "-O -flto" }
-- { dg-require-effective-target lto }
with Lto16_Pkg; use Lto16_Pkg;
with Text_IO; use Text_IO;
procedure Lto16 is
begin
if F = 0.0 then
Put_Line ("zero");
else
Put_Line ("non-zero");
end if;
exception
when others => Put_Line ("exception");
end;