This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug ada/34469] Many ACATS failures not in 4.2.2 [regression]
- From: "laurent at guerby dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 14 Dec 2007 21:35:23 -0000
- Subject: [Bug ada/34469] Many ACATS failures not in 4.2.2 [regression]
- References: <bug-34469-296@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from laurent at guerby dot net 2007-12-14 21:35 -------
Now let's hope someone knowledgeable about exception handling will step in :).
with Ada.Text_IO; use Ada.Text_IO;
procedure P is
begin
begin
raise Constraint_Error;
exception
when others =>
Put_Line ("catch1");
end;
exception
when others =>
Put_Line ("catch2");
end P;
With native x86_64:
$ gnatmake p
$ ./p
catch1
$
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34469