newer version

This commit is contained in:
ceriel
1986-06-17 12:04:05 +00:00
parent f1a0c90fb1
commit a9dfdc494b
21 changed files with 573 additions and 516 deletions

9
lang/m2/comp/chk_expr.h Normal file
View File

@@ -0,0 +1,9 @@
/* E X P R E S S I O N C H E C K I N G */
/* $Header$ */
extern int (*ChkTable[])(); /* table of expression checking
functions, indexed by node class
*/
#define chk_expr(expp) ((*ChkTable[(expp)->nd_class])(expp))