PR gas/11089
authorNick Clifton <nickc@redhat.com>
Mon, 14 Dec 2009 10:59:37 +0000 (10:59 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 14 Dec 2009 10:59:37 +0000 (10:59 +0000)
        * config/tc-rx.c (rx_equ): Rename 'expr' to 'expression' in order
        to avoid shadowing a global symbol of the same name.

gas/ChangeLog
gas/config/tc-rx.c

index 0c588af01f8064f793c3606ebceabad40ef95b43..b8447d4da3eccc3cced6002366179cd82eb1ac44 100644 (file)
@@ -1,7 +1,13 @@
+2009-12-14  Yoshinori Sato  <ysato@users.sourceforge.jp>
+
+       PR gas/11089
+       * config/tc-rx.c (rx_equ): Rename 'expr' to 'expression' in order
+       to avoid shadowing a global symbol of the same name.
+
 2009-12-14  Nick Clifton  <nickc@redhat.com>
 
        * config/tc-microblaze.c (md_assemble): Rename 'imm' to 'immed' in
-       order to avoid shadowing global variable of the same name.
+       order to avoid shadowing a global symbol of the same name.
 
 2009-12-11  Andrew Jenner  <andrew@codesourcery.com>
 
index f6353210f1841d0e6465629993f11eed4b10ca9f..3bb9a5afe7b48de2ec60c7b49f768c7836ca9ff7 100644 (file)
@@ -895,7 +895,7 @@ rx_frag_init (fragS * fragP)
    <symbol_name> .equ <expression>   */
 
 static void
-rx_equ (char * name, char * expr)
+rx_equ (char * name, char * expression)
 {
   char   saved_name_end_char;
   char * name_end;
@@ -912,7 +912,7 @@ rx_equ (char * name, char * expr)
   * name_end = 0;
 
   saved_ilp = input_line_pointer;
-  input_line_pointer = expr;
+  input_line_pointer = expression;
 
   equals (name, 1);
 
This page took 0.06472 seconds and 4 git commands to generate.