Updated sources to avoid using the identifier name "new", which is a
[deliverable/binutils-gdb.git] / gas / config / tc-dlx.c
index e6a8e87d631851ae9772d7d1ce1f2832b1c680af..55643a613b7eb3609a685957b8c2f43741fb013b 100644 (file)
@@ -594,7 +594,7 @@ static char *
 parse_operand (char *s, expressionS *operandp)
 {
   char *save = input_line_pointer;
-  char *new;
+  char *new_pos;
 
   the_insn.HI = the_insn.LO = 0;
 
@@ -641,9 +641,9 @@ parse_operand (char *s, expressionS *operandp)
       (void) expression (operandp);
     }
 
-  new = input_line_pointer;
+  new_pos = input_line_pointer;
   input_line_pointer = save;
-  return new;
+  return new_pos;
 }
 
 /* Instruction parsing.  Takes a string containing the opcode.
This page took 0.024291 seconds and 4 git commands to generate.