Skip to content
Snippets Groups Projects
Commit f9be4bf7 authored by Julian Seward's avatar Julian Seward
Browse files

[project @ 2000-04-14 15:10:20 by sewardj]

Change NO_MACHREGS back to NO_REGS -- I misunderstood the problem.
parent 456949b3
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: MachRegs.h,v 1.7 2000/04/13 23:03:12 sewardj Exp $
* $Id: MachRegs.h,v 1.8 2000/04/14 15:10:20 sewardj Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -15,11 +15,11 @@
* only in here please.
*/
/* define NO_MACHREGS to omit register declarations - used in RTS C code
/* define NO_REGS to omit register declarations - used in RTS C code
* that needs all the STG definitions but not the global register
* settings.
*/
#ifndef NO_MACHREGS
#ifndef NO_REGS
/* ----------------------------------------------------------------------------
Caller saves and callee-saves regs.
......@@ -482,6 +482,6 @@
#define MAX_REAL_DOUBLE_REG 2
#endif
#endif /* NO_MACHREGS */
#endif /* NO_REGS */
#endif /* MACHREGS_H */
/* -----------------------------------------------------------------------------
* $Id: Stg.h,v 1.28 2000/04/14 14:15:07 simonmar Exp $
* $Id: Stg.h,v 1.29 2000/04/14 15:10:20 sewardj Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -30,8 +30,8 @@
#endif
#if IN_STG_CODE == 0
# ifndef NO_MACHREGS
# define NO_MACHREGS /* don't define fixed registers */
# ifndef NO_REGS
# define NO_REGS /* don't define fixed registers */
# endif
#endif
......
......@@ -7,8 +7,8 @@
* Hugs version 1.4, December 1997
*
* $RCSfile: options.h,v $
* $Revision: 1.26 $
* $Date: 2000/04/13 23:03:12 $
* $Revision: 1.27 $
* $Date: 2000/04/14 15:10:20 $
* ------------------------------------------------------------------------*/
......@@ -152,6 +152,7 @@
* and EAGER_BLACKHOLING has been introduced also. KSW 1999-01.
*/
/* Turn miniinterpreter on/off.
*
* The mininterpreter is portable but slow - if you turn it off,
......@@ -165,7 +166,7 @@
* If you turn this off, you'll probably need to provide some
* assembly language support for your architecture.
*/
#define NO_MACHREGS
#define NO_REGS
/* Define if :xplain should be enabled */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment