diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-02-11 06:14:41 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-02-11 06:14:41 +0000 |
commit | 7eb27ef29f14089d83faa5dae85c009df7748c72 (patch) | |
tree | af0d8870eaae053b67e1dbb2c89f8cefa6058715 /gas | |
parent | fb6de7f3cc733f594c0c6ea74a8d9f665d041c81 (diff) | |
download | gdb-7eb27ef29f14089d83faa5dae85c009df7748c72.zip gdb-7eb27ef29f14089d83faa5dae85c009df7748c72.tar.gz gdb-7eb27ef29f14089d83faa5dae85c009df7748c72.tar.bz2 |
* config/tc-sh.c (dot): Removed unused function.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-sh.c | 15 |
2 files changed, 4 insertions, 15 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b4db8a5..234f835 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-02-11 Alexandre Oliva <aoliva@redhat.com> + + * config/tc-sh.c (dot): Removed unused function. + 2002-02-11 Alan Modra <amodra@bigpond.net.au> * Makefile.am: "make dep-am". diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 11cc833..5afaad8 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -59,7 +59,6 @@ static unsigned int assemble_ppi PARAMS ((char *, sh_opcode_info *)); static void little PARAMS ((int)); static void big PARAMS ((int)); static int parse_reg PARAMS ((char *, int *, int *)); -static symbolS *dot PARAMS ((void)); static char *parse_exp PARAMS ((char *, sh_operand_info *)); static char *parse_at PARAMS ((char *, sh_operand_info *)); static void get_operand PARAMS ((char **, sh_operand_info *)); @@ -1258,20 +1257,6 @@ parse_reg (src, mode, reg) return 0; } -static symbolS * -dot () -{ - const char *fake; - - /* JF: '.' is pseudo symbol with value of current location - in current segment. */ - fake = FAKE_LABEL_NAME; - return symbol_new (fake, - now_seg, - (valueT) frag_now_fix (), - frag_now); -} - static char * parse_exp (s, op) char *s; |