*** empty log message ***

This commit is contained in:
erikb
1986-03-10 13:07:55 +00:00
parent c21def03db
commit bc296e2dcc
105 changed files with 16543 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
/* $Header$ */
/* DATAFLOW ANALYSIS ON C PROGRAMS */
/* Compile the C compiler with flag DATAFLOW.
Use the compiler option --d.
*/
#include "dataflow.h" /* UF */
#ifdef DATAFLOW
char *CurrentFunction = 0;
int NumberOfCalls;
DfaStartFunction(nm)
char *nm;
{
CurrentFunction = nm;
NumberOfCalls = 0;
}
DfaEndFunction()
{
if (NumberOfCalls == 0) {
printf("DFA: %s: --none--\n", CurrentFunction);
}
}
DfaCallFunction(s)
char *s;
{
printf("DFA: %s: %s\n", CurrentFunction, s);
++NumberOfCalls;
}
#endif DATAFLOW