* gcc.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git] / gcc / testsuite / gnat.dg / handle_and_return.adb
blobb40dbafb37dd87e22bb313952d850f9dd9d1dc8e
1 -- { dg-do run }
2 -- { dg-options "-gnatp -O2" }
4 with Raise_Ce;
6 procedure Handle_And_Return is
7 begin
8 begin
9 Raise_CE;
10 return;
11 exception
12 when others => null;
13 end;
15 begin
16 Raise_CE;
17 return;
18 exception
19 when others => null;
20 end;
21 end;