diff options
Diffstat (limited to 'gcc/ada/init.c')
-rw-r--r-- | gcc/ada/init.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/ada/init.c b/gcc/ada/init.c index fb94198..e943837 100644 --- a/gcc/ada/init.c +++ b/gcc/ada/init.c @@ -809,7 +809,6 @@ void (*__gnat_ctrl_c_handler) (void) = 0; /* Masks for facility identification. */ #define FAC_MASK 0x0fff0000 #define DECADA_M_FACILITY 0x00310000 -#define SEVERITY_MASK 0x7 /* Define macro symbols for the VMS conditions that become Ada exceptions. It would be better to just include <ssdef.h> */ @@ -1069,9 +1068,6 @@ __gnat_default_resignal_p (int code) if ((code & FAC_MASK) == facility_resignal_table [i]) return 1; - if ((code & SEVERITY_MASK) == 1 || (code & SEVERITY_MASK) == 3) - return 1; - for (i = 0, iexcept = 0; cond_resignal_table [i] && !(iexcept = LIB$MATCH_COND (&code, &cond_resignal_table [i])); |