1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-01 11:20:41 -08:00

(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these

names instead of C_SWITCH_OPTIMIZE, C_SWITCH_DEBUG.
This commit is contained in:
Richard M. Stallman 1995-07-07 13:37:04 +00:00
parent 6032180236
commit e83ec068f9

View file

@ -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