Add `long long' support.
This commit is contained in:
parent
5ef7fe2b6a
commit
b1f1ada658
|
@ -6,7 +6,7 @@
|
||||||
* Modified 1990 by Van Jacobson at Lawrence Berkeley Laboratory.
|
* Modified 1990 by Van Jacobson at Lawrence Berkeley Laboratory.
|
||||||
*
|
*
|
||||||
* from: @(#)m-hp300bsd.h 6.8 (Berkeley) 5/8/91
|
* from: @(#)m-hp300bsd.h 6.8 (Berkeley) 5/8/91
|
||||||
* $Id: m-hp300bsd.h,v 1.2 1993/08/01 18:48:33 mycroft Exp $
|
* $Id: m-hp300bsd.h,v 1.3 1993/08/14 04:33:22 mycroft Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Parameters for execution on a Hewlett-Packard 9000/300, running bsd.
|
/* Parameters for execution on a Hewlett-Packard 9000/300, running bsd.
|
||||||
|
@ -57,6 +57,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||||
|
|
||||||
#define IEEE_FLOAT
|
#define IEEE_FLOAT
|
||||||
|
|
||||||
|
/* We do long longs. */
|
||||||
|
|
||||||
|
#define LONG_LONG
|
||||||
|
|
||||||
/* Get rid of any system-imposed stack limit if possible. */
|
/* Get rid of any system-imposed stack limit if possible. */
|
||||||
|
|
||||||
#define SET_STACK_LIMIT_HUGE
|
#define SET_STACK_LIMIT_HUGE
|
||||||
|
@ -151,10 +155,10 @@ read_memory_integer (read_register (SP_REGNUM), 4)
|
||||||
#define INVALID_FLOAT(p, len) 0 /* Just a first guess; not checked */
|
#define INVALID_FLOAT(p, len) 0 /* Just a first guess; not checked */
|
||||||
|
|
||||||
/* Largest integer type */
|
/* Largest integer type */
|
||||||
#define LONGEST long
|
#define LONGEST long long
|
||||||
|
|
||||||
/* Name of the builtin type for the LONGEST type above. */
|
/* Name of the builtin type for the LONGEST type above. */
|
||||||
#define BUILTIN_TYPE_LONGEST builtin_type_long
|
#define BUILTIN_TYPE_LONGEST builtin_type_long_long
|
||||||
|
|
||||||
/* Say how long (ordinary) registers are. */
|
/* Say how long (ordinary) registers are. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue