Updated sources to avoid using the identifier name "new", which is a
[deliverable/binutils-gdb.git] / gas / config / tc-z8k.c
index 100f873db0c49ee028080467174f9cead2625799..5be02605387fcd5b3fb0e4b7e0779c6993b39176 100644 (file)
@@ -342,15 +342,15 @@ static char *
 parse_exp (char *s, expressionS *op)
 {
   char *save = input_line_pointer;
-  char *new;
+  char *new_pointer;
 
   input_line_pointer = s;
   expression (op);
   if (op->X_op == O_absent)
     as_bad (_("missing operand"));
-  new = input_line_pointer;
+  new_pointer = input_line_pointer;
   input_line_pointer = save;
-  return new;
+  return new_pointer;
 }
 
 /* The many forms of operand:
This page took 0.025826 seconds and 4 git commands to generate.