aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorMichael Tiemann <tiemann@cygnus>1994-11-26 00:28:30 +0000
committerMichael Tiemann <tiemann@cygnus>1994-11-26 00:28:30 +0000
commita84f6e1734ce3aff935e355ffb027fa72c966d7a (patch)
tree0fc4da2dba82b1e43927967adae53c50256dcbe4 /gas
parentfb870b50a7fb8e68a4412f0c0e133de0f2844447 (diff)
downloadgdb-a84f6e1734ce3aff935e355ffb027fa72c966d7a.zip
gdb-a84f6e1734ce3aff935e355ffb027fa72c966d7a.tar.gz
gdb-a84f6e1734ce3aff935e355ffb027fa72c966d7a.tar.bz2
Add dummy decl for `dump_literals'.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-rce.c44
1 files changed, 23 insertions, 21 deletions
diff --git a/gas/config/tc-rce.c b/gas/config/tc-rce.c
index 3a82265..ff27d070 100644
--- a/gas/config/tc-rce.c
+++ b/gas/config/tc-rce.c
@@ -263,6 +263,23 @@ unsigned min, max;
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 *
parse_mem(s, reg, off, siz)
@@ -305,26 +322,6 @@ unsigned siz;
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
machine dependent instruction. This function is supposed to emit
@@ -1141,7 +1138,12 @@ md_pcrel_from (fixP)
return gap;
}
-
+void
+dump_literals (i)
+ int i;
+{
+ /* does nothing for now. */
+}
#ifdef BFD_ASSEMBLER