30 lines
833 B
C
30 lines
833 B
C
#ifndef NORCSID
|
|
static char rcsid[] = "$Header$";
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include "param.h"
|
|
#include "types.h"
|
|
#include "lookup.h"
|
|
#include "proinf.h"
|
|
|
|
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*
|
|
* Author: Hans van Staveren
|
|
*/
|
|
|
|
unsigned linecount = 0; /* "line"number for errormessages */
|
|
int prodepth = 0; /* Level of nesting */
|
|
bool Lflag = 0; /* make library module */
|
|
bool nflag = 0; /* do not optimize */
|
|
line_p instrs,pseudos; /* pointers to chains */
|
|
sym_p symhash[NSYMHASH]; /* array of pointers to chains */
|
|
FILE *outfile;
|
|
char template[] = "/usr/tmp/emoptXXXXXX";
|
|
offset wordsize = 0;
|
|
offset pointersize = 0;
|
|
char *progname;
|
|
proinf curpro; /* collected information about current pro */
|