diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-05-10 19:07:57 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-05-10 19:07:57 +0000 |
commit | 54f10da0da624dd8c9728094d637634b6bce330f (patch) | |
tree | 71565ffaf7866b8b09826e82179a7c4e9b984530 /gas/config | |
parent | 65824763af005a37f110a981bfacfab0468de7ca (diff) | |
download | gdb-54f10da0da624dd8c9728094d637634b6bce330f.zip gdb-54f10da0da624dd8c9728094d637634b6bce330f.tar.gz gdb-54f10da0da624dd8c9728094d637634b6bce330f.tar.bz2 |
whitespace changes; rely on default initialization for a var
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-vms.c | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/gas/config/obj-vms.c b/gas/config/obj-vms.c index 1889071..94ef429 100644 --- a/gas/config/obj-vms.c +++ b/gas/config/obj-vms.c @@ -113,21 +113,28 @@ enum advanced_type struct VMS_DBG_Symbol { struct VMS_DBG_Symbol *next; - enum advanced_type advanced; /* description of what this is */ - int dbx_type; /* this record is for this type */ - int type2; /* For advanced types this is the type referred to. - i.e. the type a pointer points to, or the type - of object that makes up an array */ - int VMS_type; /* Use this type when generating a variable def */ - int index_min; /* used for arrays - this will be present for all */ - int index_max; /* entries, but will be meaningless for non-arrays */ - int data_size; /* size in bytes of the data type. For an array, this - is the size of one element in the array */ - int struc_numb; /* Number of the structure/union/enum - used for ref */ + /* description of what this is */ + enum advanced_type advanced; + /* this record is for this type */ + int dbx_type; + /* For advanced types this is the type referred to. I.e., the type + a pointer points to, or the type of object that makes up an + array. */ + int type2; + /* Use this type when generating a variable def */ + int VMS_type; + /* used for arrays - this will be present for all */ + int index_min; + /* entries, but will be meaningless for non-arrays */ + int index_max; + /* Size in bytes of the data type. For an array, this is the size + of one element in the array */ + int data_size; + /* Number of the structure/union/enum - used for ref */ + int struc_numb; }; -struct VMS_DBG_Symbol *VMS_Symbol_type_list = -{(struct VMS_DBG_Symbol *) NULL}; +struct VMS_DBG_Symbol *VMS_Symbol_type_list; /* * We need this structure to keep track of forward references to |