* expr.c (operand): Pass &c to md_parse_name().
authorAlexandre Oliva <aoliva@redhat.com>
Thu, 12 Apr 2001 07:03:10 +0000 (07:03 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Thu, 12 Apr 2001 07:03:10 +0000 (07:03 +0000)
* config/tc-ia64.h, config/tc-ppc.h, config/tc-tic54x.h: Adjust.

gas/ChangeLog
gas/config/tc-ia64.h
gas/config/tc-ppc.h
gas/config/tc-tic54x.h
gas/expr.c

index a202bb1ac0c6bfd97d1ce807aed20d57eb5662ab..d75371ef84d36e05d337486144b5b1184b127409 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-12  Alexandre Oliva  <aoliva@redhat.com>
+
+       * expr.c (operand): Pass &c to md_parse_name().
+       * config/tc-ia64.h, config/tc-ppc.h, config/tc-tic54x.h: Adjust.
+
 2001-04-07  Steven J. Hill  <sjhill@cotw.com>
 
        * config/tc-mips.c: Support ELF64 for traditional MIPS targets.
index a0b1a35202a7f084919f557a278731a72894eef2..fc587261295091bdeb455402eb21d6b6c9adbf36 100644 (file)
@@ -92,7 +92,7 @@ extern void ia64_handle_align PARAMS ((fragS *f));
 #define tc_unrecognized_line(ch)       ia64_unrecognized_line (ch)
 #define tc_frob_label(s)               ia64_frob_label (s)
 #define md_flush_pending_output()      ia64_flush_pending_output ()
-#define md_parse_name(s,e)             ia64_parse_name (s, e)
+#define md_parse_name(s,e,c)           ia64_parse_name (s, e)
 #define tc_canonicalize_symbol_name(s) ia64_canonicalize_symbol_name (s)
 #define md_optimize_expr(l,o,r)                ia64_optimize_expr (l, o, r)
 #define md_cons_align(n)               ia64_cons_align (n)
index c2876bfa35b8e308627c26c2595f90a07d734981..d2cd1b846165e5be3a12ea46e98de5fdc13272ae 100644 (file)
@@ -268,7 +268,7 @@ extern const char *ppc_comment_chars;
 #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section(FIXP, SEC)
 extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
 
-#define md_parse_name(name, exp) ppc_parse_name (name, exp)
+#define md_parse_name(name, exp, c) ppc_parse_name (name, exp)
 extern int ppc_parse_name PARAMS ((const char *, struct expressionS *));
 
 #define md_operand(x)
index 9e7e4aab62e539a40120a3f290f249cec8235f84..f239fc9570e4dd51c427e66d2258e6a8ff0e8531 100644 (file)
@@ -88,7 +88,7 @@ extern void tic54x_number_to_chars PARAMS((char *, valueT, int));
 extern void tic54x_adjust_symtab PARAMS(());
 #define tc_unrecognized_line(ch) tic54x_unrecognized_line(ch)
 extern int tic54x_unrecognized_line PARAMS((int ch));
-#define md_parse_name(s,e) tic54x_parse_name(s,e)
+#define md_parse_name(s,e,c) tic54x_parse_name(s,e)
 extern int tic54x_parse_name PARAMS((char *name, expressionS *e));
 #define md_undefined_symbol(s) tic54x_undefined_symbol(s)
 extern symbolS *tic54x_undefined_symbol PARAMS((char *name));
index 8ddc965c7aad609fffdcf17aac10ae04a1180e86..1fa5f7e2569bda97cb9b94a0f944074e2f073c78 100644 (file)
@@ -1231,7 +1231,7 @@ operand (expressionP)
              specially in certain contexts.  If a name always has a
              specific value, it can often be handled by simply
              entering it in the symbol table.  */
-         if (md_parse_name (name, expressionP))
+         if (md_parse_name (name, expressionP, &c))
            {
              *input_line_pointer = c;
              break;
This page took 0.033559 seconds and 4 git commands to generate.