Simple -Wshadow=local fixes
[deliverable/binutils-gdb.git] / gdb / parse.c
index 8a128a74d77d02961a5bf292b79528d84537b81e..1e7782e4cafc2dcc5b9438b5b62daa3250908e68 100644 (file)
@@ -1743,10 +1743,10 @@ operator_check_standard (struct expression *exp, int pos,
 
        for (arg = 0; arg < nargs; arg++)
          {
-           struct type *type = elts[pos + 3 + arg].type;
-           struct objfile *objfile = TYPE_OBJFILE (type);
+           struct type *inst_type = elts[pos + 3 + arg].type;
+           struct objfile *inst_objfile = TYPE_OBJFILE (inst_type);
 
-           if (objfile && (*objfile_func) (objfile, data))
+           if (inst_objfile && (*objfile_func) (inst_objfile, data))
              return 1;
          }
       }
This page took 0.024555 seconds and 4 git commands to generate.