- Improved some minor stuff regarding synchronisation checking and

debugging info.
- '--pp=100' switch in debug mode now allows for disabling of
  synchronising_labels set.
This commit is contained in:
ccremers
2004-07-25 15:30:58 +00:00
parent db52ec77e6
commit f8aacee6ad
2 changed files with 16 additions and 4 deletions

View File

@@ -1057,6 +1057,15 @@ compute_prec_sets (const System sys)
tl_scan = tl_scan->next;
}
}
#ifdef DEBUG
// Porparam = 100 (weirdness) [x][cc][debug] can turn of the synchronising label sets (override).
if (sys->porparam == 100)
{
termlistDelete (sys->synchronising_labels);
sys->synchronising_labels = NULL;
warning ("Emptied synchronising labels set manually because --pp=100.");
}
#endif
// Check for empty stuff
//@todo This is for debugging, mainly.
if (cl->prec == NULL)
@@ -1082,9 +1091,12 @@ compute_prec_sets (const System sys)
memFree (prec, size * size * sizeof(int));
#ifdef DEBUG
printf ("Synchronising labels set: ");
termlistPrint (sys->synchronising_labels);
printf ("\n");
if (DEBUGL(2))
{
printf ("Synchronising labels set: ");
termlistPrint (sys->synchronising_labels);
printf ("\n");
}
#endif
}