Mercurial > emacs
changeset 12496:333d25d9a8b1
(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these
names instead of C_SWITCH_OPTIMIZE, C_SWITCH_DEBUG.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 07 Jul 1995 13:37:04 +0000 |
parents | 664012a3216e |
children | a48e520afeb6 |
files | src/s/aix3-2-5.h |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/s/aix3-2-5.h Fri Jul 07 13:36:40 1995 +0000 +++ b/src/s/aix3-2-5.h Fri Jul 07 13:37:04 1995 +0000 @@ -6,8 +6,8 @@ because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */ #ifndef __GNUC__ -#undef C_SWITCH_DEBUG -#undef C_SWITCH_OPTIMIZE -#define C_SWITCH_DEBUG -#define C_SWITCH_OPTIMIZE -O +#undef C_DEBUG_SWITCH +#undef C_OPTIMIZE_SWITCH +#define C_DEBUG_SWITCH -O +#define C_OPTIMIZE_SWITCH -O #endif