diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:04:44 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:04:44 -0400 |
commit | 65f051c8e28b008e1072b51504cde0d01f550f04 (patch) | |
tree | 9425f45152443fe1f40de71bf533a51e4bc2e47b /gcc | |
parent | 3efba298c7bafb883a504fea152b151820c1ac9d (diff) | |
download | gcc-65f051c8e28b008e1072b51504cde0d01f550f04.zip gcc-65f051c8e28b008e1072b51504cde0d01f550f04.tar.gz gcc-65f051c8e28b008e1072b51504cde0d01f550f04.tar.bz2 |
(FAILURE_EXIT_CODE): Remove.
From-SVN: r9726
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/xm-alpha.h | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/xm-rs6000.h | 7 | ||||
-rw-r--r-- | gcc/config/vax/xm-vms.h | 3 |
3 files changed, 5 insertions, 10 deletions
diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h index 8b12bed..8a2ec95 100644 --- a/gcc/config/alpha/xm-alpha.h +++ b/gcc/config/alpha/xm-alpha.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for DEC Alpha. - Copyright (C) 1990, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1990, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu). This file is part of GNU CC. @@ -38,8 +38,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Arguments to use with `exit'. */ #define SUCCESS_EXIT_CODE 0 -#define FAILURE_EXIT_CODE 2 -#define FATAL_EXIT_CODE 3 +#define FATAL_EXIT_CODE 33 /* If not compiled with GNU C, use the builtin alloca. */ #ifndef __GNUC__ diff --git a/gcc/config/rs6000/xm-rs6000.h b/gcc/config/rs6000/xm-rs6000.h index c6f89d3..ac9e602 100644 --- a/gcc/config/rs6000/xm-rs6000.h +++ b/gcc/config/rs6000/xm-rs6000.h @@ -1,6 +1,6 @@ /* Configuration for GNU C-compiler for IBM RS/6000. - Copyright (C) 1990, 1993 Free Software Foundation, Inc. - Contributed by Richard Kenner (kenner@nyu.edu). + Copyright (C) 1990, 1993, 1995 Free Software Foundation, Inc. + Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu). This file is part of GNU CC. @@ -38,8 +38,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Arguments to use with `exit'. */ #define SUCCESS_EXIT_CODE 0 -#define FAILURE_EXIT_CODE 2 -#define FATAL_EXIT_CODE 3 +#define FATAL_EXIT_CODE 33 /* If not compiled with GNU C, use the C alloca and use only int bitfields. */ #ifndef __GNUC__ diff --git a/gcc/config/vax/xm-vms.h b/gcc/config/vax/xm-vms.h index 581373d..31b690b 100644 --- a/gcc/config/vax/xm-vms.h +++ b/gcc/config/vax/xm-vms.h @@ -48,10 +48,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define HOST_FLOAT_FORMAT VAX_FLOAT_FORMAT #define SUCCESS_EXIT_CODE 1 -#define FAILURE_EXIT_CODE (2 | 0x10000000) /* Error, and no DCL message. */ #define FATAL_EXIT_CODE (44 | 0x10000000) /* Abort, and no DCL message. */ -/* (FAILURE_ is used in cccp.c, FATAL_ by toplev.c, plus gen*.c and bi-*.c) */ - /* A couple of conditionals for execution machine are controlled here. */ #ifndef VMS |