diff options
Diffstat (limited to 'gas/config/tc-m88k.h')
-rw-r--r-- | gas/config/tc-m88k.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gas/config/tc-m88k.h b/gas/config/tc-m88k.h index 9e158c8..8c32449 100644 --- a/gas/config/tc-m88k.h +++ b/gas/config/tc-m88k.h @@ -1,3 +1,4 @@ + /* m88k.h -- Assembler for the Motorola 88000 Contributed by Devon Bowen of Buffalo University and Torbjorn Granlund of the Swedish Institute of Computer Science. @@ -34,12 +35,12 @@ enum reloc_type struct reloc_info_m88k { - unsigned long int r_address; - unsigned int r_symbolnum: 24; - unsigned int r_extern : 1; - unsigned int r_pad : 3; - enum reloc_type r_type : 4; - long int r_addend; + unsigned long int r_address; + unsigned int r_symbolnum:24; + unsigned int r_extern:1; + unsigned int r_pad:3; + enum reloc_type r_type:4; + long int r_addend; }; #define relocation_info reloc_info_m88k |