aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>2000-06-30 02:22:15 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>2000-06-29 19:22:15 -0700
commitcf1b2274578dcca43e32ebaf91c2f7ac054d7cec (patch)
tree447b9ee4168343fadb9fbfd8ab851a08561ffcad /gcc
parentffaff4147a23b15f8282365f81bd15523a25fcad (diff)
downloadgcc-cf1b2274578dcca43e32ebaf91c2f7ac054d7cec.zip
gcc-cf1b2274578dcca43e32ebaf91c2f7ac054d7cec.tar.gz
gcc-cf1b2274578dcca43e32ebaf91c2f7ac054d7cec.tar.bz2
parse.y (verify_constructor_super): Use loop variable `m_arg_type' initialized with `mdecl_arg_type'.
2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com> * parse.y (verify_constructor_super): Use loop variable `m_arg_type' initialized with `mdecl_arg_type'. From-SVN: r34800
Diffstat (limited to 'gcc')
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/parse.c13
-rw-r--r--gcc/java/parse.y13
3 files changed, 19 insertions, 12 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index dc20cad..bac16b8 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
+
+ * parse.y (verify_constructor_super): Use loop variable
+ `m_arg_type' initialized with `mdecl_arg_type'.
+
2000-06-29 Tom Tromey <tromey@cygnus.com>
* parse.y (resolve_field_access): Handle case where `type_found'
diff --git a/gcc/java/parse.c b/gcc/java/parse.c
index b45c566..6d6715e 100644
--- a/gcc/java/parse.c
+++ b/gcc/java/parse.c
@@ -11078,18 +11078,19 @@ verify_constructor_super (mdecl)
for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
if (DECL_CONSTRUCTOR_P (sdecl))
{
+ tree m_arg_type;
tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
if (super_inner)
arg_type = TREE_CHAIN (arg_type);
- for (; (arg_type != end_params_node
- && mdecl_arg_type != end_params_node);
+ for (m_arg_type = mdecl_arg_type;
+ (arg_type != end_params_node
+ && m_arg_type != end_params_node);
arg_type = TREE_CHAIN (arg_type),
- mdecl_arg_type = TREE_CHAIN (mdecl_arg_type))
- if (TREE_VALUE (arg_type) != TREE_VALUE (mdecl_arg_type))
+ m_arg_type = TREE_CHAIN (m_arg_type))
+ if (TREE_VALUE (arg_type) != TREE_VALUE (m_arg_type))
break;
- if (arg_type == end_params_node &&
- mdecl_arg_type == end_params_node)
+ if (arg_type == end_params_node && m_arg_type == end_params_node)
return 0;
}
}
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index 451ca49..da0a219 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -8380,18 +8380,19 @@ verify_constructor_super (mdecl)
for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
if (DECL_CONSTRUCTOR_P (sdecl))
{
+ tree m_arg_type;
tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
if (super_inner)
arg_type = TREE_CHAIN (arg_type);
- for (; (arg_type != end_params_node
- && mdecl_arg_type != end_params_node);
+ for (m_arg_type = mdecl_arg_type;
+ (arg_type != end_params_node
+ && m_arg_type != end_params_node);
arg_type = TREE_CHAIN (arg_type),
- mdecl_arg_type = TREE_CHAIN (mdecl_arg_type))
- if (TREE_VALUE (arg_type) != TREE_VALUE (mdecl_arg_type))
+ m_arg_type = TREE_CHAIN (m_arg_type))
+ if (TREE_VALUE (arg_type) != TREE_VALUE (m_arg_type))
break;
- if (arg_type == end_params_node &&
- mdecl_arg_type == end_params_node)
+ if (arg_type == end_params_node && m_arg_type == end_params_node)
return 0;
}
}