diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-09-14 11:48:26 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-09-14 11:48:26 +0000 |
commit | bf514e21545d180ded6d754fda60875d7dd0d3ae (patch) | |
tree | 9c6debbad8f1227c2c2789dacd9a19f7b21f9b61 /gas/config/obj-vms.h | |
parent | 06bb75c14b0fc428602fd81f9de747b220f436dd (diff) | |
download | gdb-bf514e21545d180ded6d754fda60875d7dd0d3ae.zip gdb-bf514e21545d180ded6d754fda60875d7dd0d3ae.tar.gz gdb-bf514e21545d180ded6d754fda60875d7dd0d3ae.tar.bz2 |
2000-09-13 Kazu Hirata <kazu@hxi.com>
* config/obj-ecoff.c: Fix formatting.
* config/obj-elf.c: Likewise.
* config/obj-elf.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-generic.h: Likewise.
* config/obj-hp300.c: Likewise.
* config/obj-hp300.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/obj-vms.c: Likewise.
* config/obj-vms.h: Likewise.
Diffstat (limited to 'gas/config/obj-vms.h')
-rw-r--r-- | gas/config/obj-vms.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gas/config/obj-vms.h b/gas/config/obj-vms.h index ad8fdce..16a3489 100644 --- a/gas/config/obj-vms.h +++ b/gas/config/obj-vms.h @@ -1,5 +1,5 @@ /* VMS object file format - Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 1999 + Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 99, 2000 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -17,7 +17,7 @@ the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. */ +02111-1307, USA. */ /* Tag to validate a.out object file format processing */ #define OBJ_VMS 1 @@ -48,7 +48,7 @@ extern unsigned char const_flag; #define IN_DEFAULT_SECTION 0x80 -/* These are defined in obj-vms.c. */ +/* These are defined in obj-vms.c. */ extern const short seg_N_TYPE[]; extern const segT N_TYPE_seg[]; @@ -145,7 +145,7 @@ typedef struct nlist obj_symbol_type; /* Symbol table entry */ #define S_IS_DEBUG(s) ((s)->sy_symbol.n_type & N_STAB) /* True if a symbol is local symbol name */ /* A symbol name whose name begin with ^A is a gas internal pseudo symbol - nameless symbols come from .stab directives. */ + nameless symbols come from .stab directives. */ #define S_IS_LOCAL(s) (S_GET_NAME(s) && \ !S_IS_DEBUG(s) && \ (strchr(S_GET_NAME(s), '\001') != 0 || \ @@ -191,7 +191,6 @@ typedef struct nlist obj_symbol_type; /* Symbol table entry */ /* Set the n_type expression value */ #define S_SET_TYPE(s,v) ((s)->sy_symbol.n_type = (v)) - /* File header macro and type definition */ #define H_GET_TEXT_SIZE(h) ((h)->header.a_text) @@ -206,7 +205,7 @@ typedef struct nlist obj_symbol_type; /* Symbol table entry */ #define H_SET_SYMBOL_TABLE_SIZE(h,v) ((h)->header.a_syms = (v) * \ sizeof(struct nlist)) -/* line numbering stuff. */ +/* line numbering stuff. */ #define OBJ_EMIT_LINENO(a, b, c) {;} #define obj_symbol_new_hook(s) {;} @@ -223,7 +222,7 @@ extern void tc_aout_fix_to_chars PARAMS ((char *,struct fix *,relax_addressT)); extern int vms_resolve_symbol_redef PARAMS ((symbolS *)); #define RESOLVE_SYMBOL_REDEFINITION(X) vms_resolve_symbol_redef(X) -/* Compiler-generated label "__vax_g_doubles" is used to augment .stabs. */ +/* Compiler-generated label "__vax_g_doubles" is used to augment .stabs. */ extern void vms_check_for_special_label PARAMS ((symbolS *)); #define obj_frob_label(X) vms_check_for_special_label(X) @@ -547,5 +546,3 @@ extern void vms_write_object_file PARAMS ((unsigned,unsigned,unsigned, #define DBG_S_C_COMPLEX_ARRAY DST_K_TS_ARRAY #endif /* WANT_VMS_OBJ_DEFS */ - -/* end of obj-vms.h */ |