9037d137f5
This uncovers a problem in il/il_aux.c: it passes 3 arguments to getlines(), but the function expects 4 arguments. I add FALSE as the 4th argument. TRUE would fill in the list of mesregs. IL uses mesregs during phase 1, but this call to getlines() is in phase 2. TRUE would leak memory unless I added a call to Ldeleteset(mesregs). So I pass FALSE. Functions passed to go() now have a `void *` parameter because no_action() now takes a `void *`.
16 lines
495 B
C
16 lines
495 B
C
/* $Id$ */
|
|
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
void cs_machinit(void *vp); /* (FILE *f)
|
|
* Read phase-specific information from f.
|
|
*/
|
|
|
|
bool desirable(avail_p avp); /*
|
|
* Return whether it is desirable to eliminate
|
|
* the recurrences of the expression in avp.
|
|
* At the same time delete the recurrences
|
|
* for which it is not allowed.
|
|
*/
|