mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 00:59:15 +08:00
Add dummy decl for `dump_literals'.
This commit is contained in:
@ -263,6 +263,23 @@ unsigned min, max;
|
|||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* look for immediate notation '#' */
|
||||||
|
static char *
|
||||||
|
parse_imm_notation(s)
|
||||||
|
char *s;
|
||||||
|
{
|
||||||
|
static int isa_imm;
|
||||||
|
|
||||||
|
if( s == (char *)(NULL) ) return( (char *)(isa_imm) );
|
||||||
|
isa_imm=0;
|
||||||
|
while( isspace(*s) )
|
||||||
|
s++;
|
||||||
|
if( *s=='#' ) {
|
||||||
|
isa_imm=1;
|
||||||
|
s++;
|
||||||
|
}
|
||||||
|
return(s);
|
||||||
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
parse_mem(s, reg, off, siz)
|
parse_mem(s, reg, off, siz)
|
||||||
@ -305,26 +322,6 @@ unsigned siz;
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* look for immediate notation '#' */
|
|
||||||
static char *
|
|
||||||
parse_imm_notation(s)
|
|
||||||
char *s;
|
|
||||||
{
|
|
||||||
static int isa_imm;
|
|
||||||
|
|
||||||
if( s == (char *)(NULL) ) return( (char *)(isa_imm) );
|
|
||||||
isa_imm=0;
|
|
||||||
while( isspace(*s) )
|
|
||||||
s++;
|
|
||||||
if( *s=='#' ) {
|
|
||||||
isa_imm=1;
|
|
||||||
s++;
|
|
||||||
}
|
|
||||||
return(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* This is the guts of the machine-dependent assembler. STR points to a
|
/* This is the guts of the machine-dependent assembler. STR points to a
|
||||||
machine dependent instruction. This function is supposed to emit
|
machine dependent instruction. This function is supposed to emit
|
||||||
@ -1141,7 +1138,12 @@ md_pcrel_from (fixP)
|
|||||||
return gap;
|
return gap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
dump_literals (i)
|
||||||
|
int i;
|
||||||
|
{
|
||||||
|
/* does nothing for now. */
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef BFD_ASSEMBLER
|
#ifdef BFD_ASSEMBLER
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user