diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-03-20 19:08:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-03-20 19:08:35 +0000 |
commit | f59fb6cac7bc06f04074c4cf33f7794f4ab887df (patch) | |
tree | 184fd3a2f5c50f565e5f31c3bb2cefd44aca45c0 /gas/symbols.c | |
parent | 65b784d8a5fca993bea9d5eb513282d47e1d1d13 (diff) | |
download | gdb-f59fb6cac7bc06f04074c4cf33f7794f4ab887df.zip gdb-f59fb6cac7bc06f04074c4cf33f7794f4ab887df.tar.gz gdb-f59fb6cac7bc06f04074c4cf33f7794f4ab887df.tar.bz2 |
Thu Mar 20 13:42:01 1997 H.J. Lu <hjl@lucon.org>
* frags.c (frag_var): Change offset parameter to offsetT.
(frag_variant): Likewise.
* frags.h (frag_variant, frag_var): Update declarations.
* config/tc-m68k.c (struct m68k_it): Change foff field to
offsetT.
(add_frag): Change off parameter to offsetT.
* Several files: Add casts to calls to frag_var.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r-- | gas/symbols.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gas/symbols.c b/gas/symbols.c index 7d3fa15..161f83b 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -53,6 +53,8 @@ symbolS abs_symbol; struct obstack notes; static void fb_label_init PARAMS ((void)); +static long dollar_label_instance PARAMS ((long)); +static long fb_label_instance PARAMS ((long)); /* symbol_new() @@ -206,7 +208,7 @@ colon (sym_name) /* just seen "x:" - rattle symbols & frags */ possible_bytes, (relax_substateT) 0, (symbolS *) broken_words, - 0L, + (offsetT) 0, NULL); /* We want to store the pointer to where to insert the jump table in the @@ -917,7 +919,7 @@ dollar_label_defined (label) return 0; } /* dollar_label_defined() */ -static int +static long dollar_label_instance (label) long label; { @@ -1489,9 +1491,6 @@ indent () #endif -void print_expr_1 PARAMS ((FILE *, expressionS *)); -void print_symbol_value_1 PARAMS ((FILE *, symbolS *)); - void print_symbol_value_1 (file, sym) FILE *file; |