Skip to content
Snippets Groups Projects
Commit e37f536c authored by sof's avatar sof
Browse files

[project @ 1998-08-14 11:04:08 by sof]

define MAX_LONG_REG
parent 503a27d2
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,18 @@ The size of an StgDouble, in StgWords.
#endif
\end{code}
The size of an Stg{Int,Word}64, in StgWords.
\begin{code}
#if alpha_TARGET_ARCH
#define WORD64_SIZE 1
#define INT64_SIZE 1
#else
#define WORD64_SIZE 2
#define INT64_SIZE 2
#endif
\end{code}
Sizes of gmp objects, in StgWords
\begin{code}
......@@ -94,6 +106,7 @@ do the selection at GC time):
#define MAX_VANILLA_REG 8
#define MAX_FLOAT_REG 4
#define MAX_DOUBLE_REG 2
#define MAX_LONG_REG 2
\end{code}
%************************************************************************
......
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