Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
f9be4bf7
Commit
f9be4bf7
authored
25 years ago
by
Julian Seward
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 2000-04-14 15:10:20 by sewardj]
Change NO_MACHREGS back to NO_REGS -- I misunderstood the problem.
parent
456949b3
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ghc/includes/MachRegs.h
+4
-4
4 additions, 4 deletions
ghc/includes/MachRegs.h
ghc/includes/Stg.h
+3
-3
3 additions, 3 deletions
ghc/includes/Stg.h
ghc/includes/options.h
+4
-3
4 additions, 3 deletions
ghc/includes/options.h
with
11 additions
and
10 deletions
ghc/includes/MachRegs.h
+
4
−
4
View file @
f9be4bf7
/* -----------------------------------------------------------------------------
* $Id: MachRegs.h,v 1.
7
2000/04/1
3 23:03:12
sewardj Exp $
* $Id: MachRegs.h,v 1.
8
2000/04/1
4 15:10:20
sewardj Exp $
*
* (c) The GHC Team, 1998-1999
*
...
...
@@ -15,11 +15,11 @@
* only in here please.
*/
/* define NO_
MACH
REGS 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_
MACH
REGS
#ifndef NO_REGS
/* ----------------------------------------------------------------------------
Caller saves and callee-saves regs.
...
...
@@ -482,6 +482,6 @@
#define MAX_REAL_DOUBLE_REG 2
#endif
#endif
/* NO_
MACH
REGS */
#endif
/* NO_REGS */
#endif
/* MACHREGS_H */
This diff is collapsed.
Click to expand it.
ghc/includes/Stg.h
+
3
−
3
View file @
f9be4bf7
/* -----------------------------------------------------------------------------
* $Id: Stg.h,v 1.2
8
2000/04/14 1
4
:1
5:07 simonmar
Exp $
* $Id: Stg.h,v 1.2
9
2000/04/14 1
5
:1
0:20 sewardj
Exp $
*
* (c) The GHC Team, 1998-1999
*
...
...
@@ -30,8 +30,8 @@
#endif
#if IN_STG_CODE == 0
# ifndef NO_
MACH
REGS
# define NO_
MACH
REGS
/* don't define fixed registers */
# ifndef NO_REGS
# define NO_REGS
/* don't define fixed registers */
# endif
#endif
...
...
This diff is collapsed.
Click to expand it.
ghc/includes/options.h
+
4
−
3
View file @
f9be4bf7
...
...
@@ -7,8 +7,8 @@
* Hugs version 1.4, December 1997
*
* $RCSfile: options.h,v $
* $Revision: 1.2
6
$
* $Date: 2000/04/1
3 23:03:12
$
* $Revision: 1.2
7
$
* $Date: 2000/04/1
4 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_
MACH
REGS
#define NO_REGS
/* Define if :xplain should be enabled */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment