Maybe some minor changes.

This commit is contained in:
duk
1985-01-10 13:35:39 +00:00
parent 58126396af
commit d7fb9edfe2
20 changed files with 2251 additions and 112 deletions

10
util/led/defs.h Normal file
View File

@@ -0,0 +1,10 @@
/* $Header$ */
/*
* We need the S_EXT because we leave locals alone.
*/
#define ISUNDEFINED(n) (((n)->on_type & (S_TYP | S_EXT)) == (S_UND | S_EXT))
#define ISABSOLUTE(n) (((n)->on_type & (S_TYP | S_EXT)) == (S_ABS | S_EXT))
#define ISCOMMON(n) (((n)->on_type & (S_COM | S_EXT)) == (S_COM | S_EXT))
#define mustsavelocal(name) (!((name)->on_type & S_SCT))