diff options
author | Jose Ruiz <ruiz@adacore.com> | 2005-06-16 10:38:39 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-06-16 10:38:39 +0200 |
commit | a49c3e1607d7a9fd80d4899e68821e9ff8594015 (patch) | |
tree | e582bd898c04036cc4635ef9aa0e7b401a21c7d0 /gcc/ada/fe.h | |
parent | 84f8ad69c8d065ce18acee11f7d091092ae0d907 (diff) | |
download | gcc-a49c3e1607d7a9fd80d4899e68821e9ff8594015.zip gcc-a49c3e1607d7a9fd80d4899e68821e9ff8594015.tar.gz gcc-a49c3e1607d7a9fd80d4899e68821e9ff8594015.tar.bz2 |
fe.h: Add entry for Opt.Exception_Locations_Suppressed so that gigi can determine...
2005-06-14 Jose Ruiz <ruiz@adacore.com>
* fe.h: Add entry for Opt.Exception_Locations_Suppressed so that gigi
can determine whether pragma Suppress_Exception_Locations is in effect.
* utils2.c (build_call_raise): Do not pass the file name to the
exception handler if pragma Suppress_Exception_Locations is in effect.
(build_allocator): Add and process arg IGNORE_INIT_TYPE.
From-SVN: r101037
Diffstat (limited to 'gcc/ada/fe.h')
-rw-r--r-- | gcc/ada/fe.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ada/fe.h b/gcc/ada/fe.h index f3228dc..39516a6 100644 --- a/gcc/ada/fe.h +++ b/gcc/ada/fe.h @@ -6,7 +6,7 @@ * * * C Header File * * * - * Copyright (C) 1992-2004 Free Software Foundation, Inc. * + * Copyright (C) 1992-2005 Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -150,13 +150,15 @@ extern Boolean In_Same_Source_Unit (Node_Id, Node_Id); /* opt: */ -#define Global_Discard_Names opt__global_discard_names -#define Exception_Mechanism opt__exception_mechanism -#define Back_Annotate_Rep_Info opt__back_annotate_rep_info +#define Global_Discard_Names opt__global_discard_names +#define Exception_Locations_Suppressed opt__exception_locations_suppressed +#define Exception_Mechanism opt__exception_mechanism +#define Back_Annotate_Rep_Info opt__back_annotate_rep_info typedef enum {Setjmp_Longjmp, Front_End_ZCX, GCC_ZCX} Exception_Mechanism_Type; extern Boolean Global_Discard_Names; +extern Boolean Exception_Locations_Suppressed; extern Exception_Mechanism_Type Exception_Mechanism; extern Boolean Back_Annotate_Rep_Info; |