}
}
-void
+int
md_parse_option (argP, cntP, vecP)
char **argP;
int *cntP;
char ***vecP;
{
- as_warn ("unknown option: -%s", *argP);
+ return 0;
}
void
void
md_number_to_chars (buf, val, nbytes)
char *buf;
- int val;
+ valueT val;
int nbytes;
{
switch (nbytes)
void
md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
char *ptr;
- long from_addr, to_addr;
+ addressT from_addr, to_addr;
fragS *frag;
symbolS *to_symbol;
{
- ptr[0] = 0xc0;
+ ptr[0] = (char) 0xc0;
ptr[1] = 0x00;
ptr[2] = 0x00;
ptr[3] = 0x00;
void
md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
char *ptr;
- long from_addr, to_addr;
+ addressT from_addr, to_addr;
fragS *frag;
symbolS *to_symbol;
{
- ptr[0] = 0xc0;
+ ptr[0] = (char) 0xc0;
ptr[1] = 0x00;
ptr[2] = 0x00;
ptr[3] = 0x00;
int
md_estimate_size_before_relax (fragP, segment_type)
fragS *fragP;
- int segment_type;
+ segT segment_type;
{
as_fatal ("Relaxation should never occur");
}
const relax_typeS md_relax_table[] =
{0};
-void
-md_convert_frag (fragP)
- fragS *fragP;
-{
- as_fatal ("Relaxation should never occur");
-}
-
void
md_end ()
{
char *p;
int temp, bss_align;
symbolS *symbolP;
- extern const char is_end_of_line[256];
name = input_line_pointer;
c = get_symbol_end ();
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
#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