diff options
Diffstat (limited to 'gas/config/obj-vms.h')
-rw-r--r-- | gas/config/obj-vms.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/obj-vms.h b/gas/config/obj-vms.h index ac0794f..ac1fd3d 100644 --- a/gas/config/obj-vms.h +++ b/gas/config/obj-vms.h @@ -139,6 +139,12 @@ typedef struct nlist obj_symbol_type; /* Symbol table entry */ #define S_IS_COMMON(s) (S_GET_TYPE(s) == N_UNDF && S_GET_VALUE(s) != 0) +/* Return true for symbols that should not be reduced to section + symbols or eliminated from expressions, because they may be + overridden by the linker. */ +#define S_FORCE_RELOC(s) \ + (!SEG_NORMAL (S_GET_SEGMENT (s))) + #define S_IS_REGISTER(s) ((s)->sy_symbol.n_type == N_REGISTER) /* True if a debug special symbol entry */ |