comparison src/m/sparc.h @ 44601:4be8406ebef9

Don't define HAVE_ALLOCA, C_ALLOCA and STACK_DIRECTION, now set by autoconf.
author Andreas Schwab <schwab@suse.de>
date Mon, 15 Apr 2002 13:23:33 +0000
parents d3866cec14e8
children f93e5481ac9d
comparison
equal deleted inserted replaced
44600:42f01619b785 44601:4be8406ebef9
1 /* machine description file for Sun 4 SPARC. 1 /* machine description file for Sun 4 SPARC.
2 Copyright (C) 1987 Free Software Foundation, Inc. 2 Copyright (C) 1987, 2002 Free Software Foundation, Inc.
3 3
4 This file is part of GNU Emacs. 4 This file is part of GNU Emacs.
5 5
6 GNU Emacs is free software; you can redistribute it and/or modify 6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
57 57
58 /* Convert that into an integer that is 100 for a load average of 1.0 */ 58 /* Convert that into an integer that is 100 for a load average of 1.0 */
59 59
60 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) 60 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
61 61
62 /* Define C_ALLOCA if this machine does not support a true alloca
63 and the one written in C should be used instead.
64 Define HAVE_ALLOCA to say that the system provides a properly
65 working alloca function and it should be used.
66 Define neither one if an assembler-language alloca
67 in the file alloca.s should be used. */
68
69 #define HAVE_ALLOCA
70 #ifndef NOT_C_CODE 62 #ifndef NOT_C_CODE
71 #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */ 63 #if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */
72 #include <alloca.h> 64 #include <alloca.h>
73 #endif 65 #endif
74 #endif 66 #endif