[committed][RISC-V] Fix test expectations after recent late-combine changes
[official-gcc.git] / gcc / testsuite / gnat.dg / opt35_pkg.adb
blob8e868c49d975cfe4f937f10487b4365c94122edb
1 package body Opt35_Pkg is
3 function F (I : Integer) return Integer is
4 begin
5 if I = 0 then
6 raise E;
7 end if;
8 return -I;
9 end;
11 end Opt35_Pkg;