diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 17:07:42 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 17:07:42 -0500 |
commit | 772c85b0ec1d1ce75eeb057db4e56a83c2475b68 (patch) | |
tree | f2b9fe7870ea2c1a56c91b27e307dce610f0913a /gcc | |
parent | 71efde97f42ec268edf3b4b5fc3b4e959312cb9f (diff) | |
download | gcc-772c85b0ec1d1ce75eeb057db4e56a83c2475b68.zip gcc-772c85b0ec1d1ce75eeb057db4e56a83c2475b68.tar.gz gcc-772c85b0ec1d1ce75eeb057db4e56a83c2475b68.tar.bz2 |
(FAILURE_EXIT_CODE): Define.
From-SVN: r8821
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/vax/xm-vms.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/vax/xm-vms.h b/gcc/config/vax/xm-vms.h index 3cbe92b..581373d 100644 --- a/gcc/config/vax/xm-vms.h +++ b/gcc/config/vax/xm-vms.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for Vax. - Copyright (C) 1987, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -48,7 +48,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define HOST_FLOAT_FORMAT VAX_FLOAT_FORMAT #define SUCCESS_EXIT_CODE 1 -#define FATAL_EXIT_CODE (44 | 0x10000000) /* Failure, and no DCL message. */ +#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. */ |