diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-07-09 18:31:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-07-09 18:31:36 +0000 |
commit | 332fc09ff02293c88cc1e74f0ff20e222e299162 (patch) | |
tree | 8434ac676fb24a5f92b5438a7217daa29b3b3a86 /gas/config/tc-m88k.h | |
parent | 3ae135ab3b2d0eeae71ae510d79c511279ffb37d (diff) | |
download | gdb-332fc09ff02293c88cc1e74f0ff20e222e299162.zip gdb-332fc09ff02293c88cc1e74f0ff20e222e299162.tar.gz gdb-332fc09ff02293c88cc1e74f0ff20e222e299162.tar.bz2 |
Clean up some of the obvious m88k bitrot.
It still doesn't actually compile, though.
Diffstat (limited to 'gas/config/tc-m88k.h')
-rw-r--r-- | gas/config/tc-m88k.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/config/tc-m88k.h b/gas/config/tc-m88k.h index 8c32449..677cdb7 100644 --- a/gas/config/tc-m88k.h +++ b/gas/config/tc-m88k.h @@ -20,6 +20,8 @@ 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, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#define NEED_FX_R_TYPE + /* different type of relocation available in the m88k */ enum reloc_type @@ -47,3 +49,9 @@ struct reloc_info_m88k #define LOCAL_LABEL(name) (name[0] =='@' \ && ( name [1] == 'L' || name [1] == '.' )) + +#ifndef BFD_ASSEMBLER +#define md_convert_frag(h,f) {as_fatal ("m88k convert_frag\n");} +#else +#define md_convert_frag(b,s,f) {as_fatal ("m88k convert_frag\n");} +#endif |