1987-03-09 19:15:41 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
2019-03-24 09:08:45 +00:00
|
|
|
#ifndef __DEFS_H_INCLUDED__
|
|
|
|
#define __DEFS_H_INCLUDED__
|
|
|
|
|
1985-01-10 13:35:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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))
|
2019-03-24 09:08:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __DEFS_H_INCLUDED__ */
|