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

[project @ 1998-08-15 13:05:25 by sof]

Rearrange (commutative) #ifdefs to ensure that _INFO_MARKING is
defined when we come to do 'make clean all' in
ghc/runtime, it completes without error.
parent 1414955c
No related merge requests found
......@@ -453,20 +453,19 @@ Each garbage collector requires different garbage collection entries
in the info-table.
\begin{code}
#if defined(GC2s)
#define _INFO_COPYING
#else
#if defined(GC1s)
#if defined(GCdu) || defined (GCap) || defined (GCgn)
#define _INFO_COPYING
#define _INFO_COMPACTING
#define _INFO_MARKING
#else
#if defined(GCdu) || defined (GCap) || defined (GCgn)
#if defined(GC2s)
#define _INFO_COPYING
#else
#if defined(GC1s)
#define _INFO_COMPACTING
#define _INFO_MARKING
#else
/* NO_INFO_SPECIFIED (ToDo: an #error ?) */
#endif
......
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