view gcc/testsuite/gnat.dg/lto16.adb @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

-- { dg-do link }
-- { dg-options "-O -flto" { 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;