changed commented #define's into #undef's
This commit is contained in:
parent
3bcec5fe6c
commit
d3208e42ca
5 changed files with 6 additions and 6 deletions
|
@ -27,7 +27,7 @@ short * myalloc();
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
/* #define CORECHECK /* if defined tests are made to insure
|
#undef CORECHECK /* if defined tests are made to insure
|
||||||
each block occurs at most once */
|
each block occurs at most once */
|
||||||
|
|
||||||
#define CCHUNK 1024 /* number of shorts asked from system */
|
#define CCHUNK 1024 /* number of shorts asked from system */
|
||||||
|
|
|
@ -16,9 +16,9 @@ extern oldline();
|
||||||
extern oldloc();
|
extern oldloc();
|
||||||
extern oldreg();
|
extern oldreg();
|
||||||
|
|
||||||
/* #define USEMALLOC /* if defined malloc() and free() are used */
|
#undef USEMALLOC /* if defined malloc() and free() are used */
|
||||||
|
|
||||||
/* #define COREDEBUG /* keep records and print statistics */
|
#undef COREDEBUG /* keep records and print statistics */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The next define gives if defined the number of pseudo's outside
|
* The next define gives if defined the number of pseudo's outside
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*/
|
*/
|
||||||
/* $Header$ */
|
/* $Header$ */
|
||||||
|
|
||||||
/* #define DIAGOPT /* if defined diagnostics are produced */
|
#undef DIAGOPT /* if defined diagnostics are produced */
|
||||||
#ifdef DIAGOPT
|
#ifdef DIAGOPT
|
||||||
#define OPTIM(x) optim(x)
|
#define OPTIM(x) optim(x)
|
||||||
#define O_UNREACH 1001
|
#define O_UNREACH 1001
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* by the line number in the tables.
|
* by the line number in the tables.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* #define ALLOWSPECIAL /* Special optimizations allowed */
|
#undef ALLOWSPECIAL /* Special optimizations allowed */
|
||||||
|
|
||||||
#define PO_HASH 0
|
#define PO_HASH 0
|
||||||
#define PO_NEXT 1
|
#define PO_NEXT 1
|
||||||
|
|
|
@ -22,7 +22,7 @@ static char rcsid[] = "$Header$";
|
||||||
* Author: Hans van Staveren
|
* Author: Hans van Staveren
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* #define CHK_HASH /* print numbers patterns are hashed to */
|
#undef CHK_HASH /* print numbers patterns are hashed to */
|
||||||
#ifdef CHK_HASH
|
#ifdef CHK_HASH
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue