redesign of ival, other minor changes

This commit is contained in:
ceriel
1987-03-25 23:14:43 +00:00
parent db666da35a
commit 09125cce6b
42 changed files with 1146 additions and 342 deletions

View File

@@ -14,3 +14,15 @@ extern label lab_count;
extern label datlab_count;
#define data_label() (datlab_count++) /* returns a new data label */
#define define_label(idf) enter_label(idf, 1);
/* The identifier idf is defined as a label. If it is new,
it is entered into the idf list with the largest possible
scope, i.e., on the lowest possible level.
*/
#define apply_label(idf) enter_label(idf, 0);
/* The identifier idf is applied as a label. It may or may
not be there, and if it is there, it may be from a
declaration or another application.
*/