diff options
| author | Richard M. Stallman | 1995-02-17 10:29:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-02-17 10:29:46 +0000 |
| commit | 5c3c0887e705f03f6ce579ff60f0dd406bd3ebde (patch) | |
| tree | 2890f043e272ae66582600fc710c56a75655a3d6 | |
| parent | da149a8fb6db28d379e96e1ce59fce2286446cf5 (diff) | |
| download | emacs-5c3c0887e705f03f6ce579ff60f0dd406bd3ebde.tar.gz emacs-5c3c0887e705f03f6ce579ff60f0dd406bd3ebde.zip | |
(STACK_DIRECTION): Undef before defining.
[__GNUC__] (C_SWITCH_MACHINE): Remove -cckr.
Add -32, only if IRIX_FORCE_32_BITS.
| -rw-r--r-- | src/m/iris4d.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/m/iris4d.h b/src/m/iris4d.h index e1a8b472843..b7b1a09d214 100644 --- a/src/m/iris4d.h +++ b/src/m/iris4d.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* machine description file for Iris-4D machines. Use with s/irix[45]-*.h. | 1 | /* machine description file for Iris-4D machines. Use with s/irix*.h. |
| 2 | Copyright (C) 1987 Free Software Foundation, Inc. | 2 | Copyright (C) 1987 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| @@ -171,6 +171,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 171 | 171 | ||
| 172 | /* Define STACK_DIRECTION for alloca.c */ | 172 | /* Define STACK_DIRECTION for alloca.c */ |
| 173 | 173 | ||
| 174 | #undef STACK_DIRECTION | ||
| 174 | #define STACK_DIRECTION -1 | 175 | #define STACK_DIRECTION -1 |
| 175 | 176 | ||
| 176 | /* The standard definitions of these macros would work ok, | 177 | /* The standard definitions of these macros would work ok, |
| @@ -188,5 +189,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 188 | #ifndef __GNUC__ | 189 | #ifndef __GNUC__ |
| 189 | /* Turn off some "helpful" error checks for type mismatches | 190 | /* Turn off some "helpful" error checks for type mismatches |
| 190 | that we can't fix without breaking other machines. */ | 191 | that we can't fix without breaking other machines. */ |
| 191 | #define C_SWITCH_MACHINE -cckr | 192 | #ifdef IRIX_FORCE_32_BITS |
| 193 | #define C_SWITCH_MACHINE -32 | ||
| 192 | #endif | 194 | #endif |
| 195 | |||
| 196 | #endif /* not __GNUC__ */ | ||