1*18389Sralph /* onepass.h 4.1 85/03/19 */ 2*18389Sralph 3*18389Sralph #ifndef _ONEPASS_ 4*18389Sralph #define _ONEPASS_ 5*18389Sralph /* 6*18389Sralph * Definitions for creating a one-pass 7*18389Sralph * version of the compiler. 8*18389Sralph */ 9*18389Sralph 10*18389Sralph #ifdef _PASS2_ 11*18389Sralph #define crslab crs2lab 12*18389Sralph #define where where2 13*18389Sralph #define xdebug x2debug 14*18389Sralph #define tdebug t2debug 15*18389Sralph #define deflab def2lab 16*18389Sralph #define edebug e2debug 17*18389Sralph #define eprint e2print 18*18389Sralph #define getlab get2lab 19*18389Sralph #define filename ftitle 20*18389Sralph #endif 21*18389Sralph 22*18389Sralph /* NOPREF must be defined for use in first pass tree machine */ 23*18389Sralph #define NOPREF 020000 /* no preference for register assignment */ 24*18389Sralph 25*18389Sralph #include "ndu.h" 26*18389Sralph #endif 27