- comment debug messages ...

This commit is contained in:
Ludovic Jacomme 2004-07-30 01:01:32 +00:00
parent ebfe112d0b
commit 4b89406f2d
1 changed files with 4 additions and 0 deletions

View File

@ -359,10 +359,14 @@ extern void addCell(befig_list* befig)
for (chain=CELLS; chain; chain=chain->NEXT) {
int x;
cell= (cell_list*) chain->DATA;
# if 0 /* LUDO: Remove verbose/debug message ? */
printf("+ %s %s\n", cell->BEFIG->NAME, befig->NAME);
# endif
x = compare_befig(cell->BEFIG,
befig);
# if 0 /* LUDO: Remove verbose/debug message ? */
printf("- %s %s\n", cell->BEFIG->NAME, befig->NAME);
# endif
if (x) break;
}