mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-24 07:03:59 +08:00
parse.y (find_applicable_accessible_methods_list): Don't add an uninitialized value to the list.
2000-05-26 Zack Weinberg <zack@wolery.cumb.org> * java/parse.y (find_applicable_accessible_methods_list): Don't add an uninitialized value to the list. From-SVN: r34196
This commit is contained in:
parent
344e498c7c
commit
30a3caefde
@ -1,3 +1,8 @@
|
||||
2000-05-26 Zack Weinberg <zack@wolery.cumb.org>
|
||||
|
||||
* java/parse.y (find_applicable_accessible_methods_list):
|
||||
Don't add an uninitialized value to the list.
|
||||
|
||||
2000-05-25 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* parse.y (resolve_field_access): Don't check DECL_LANG_SPECIFIC
|
||||
|
@ -12633,11 +12633,13 @@ find_applicable_accessible_methods_list (lc, class, name, arglist)
|
||||
for (i = 1; i < n; i++)
|
||||
{
|
||||
tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
|
||||
tree rlist;
|
||||
if (t != object_type_node)
|
||||
rlist = find_applicable_accessible_methods_list (lc, t,
|
||||
name, arglist);
|
||||
list = chainon (rlist, list);
|
||||
{
|
||||
tree rlist
|
||||
= find_applicable_accessible_methods_list (lc, t,
|
||||
name, arglist);
|
||||
list = chainon (rlist, list);
|
||||
}
|
||||
}
|
||||
object_done = 0;
|
||||
}
|
||||
|
@ -10001,11 +10001,13 @@ find_applicable_accessible_methods_list (lc, class, name, arglist)
|
||||
for (i = 1; i < n; i++)
|
||||
{
|
||||
tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
|
||||
tree rlist;
|
||||
if (t != object_type_node)
|
||||
rlist = find_applicable_accessible_methods_list (lc, t,
|
||||
name, arglist);
|
||||
list = chainon (rlist, list);
|
||||
{
|
||||
tree rlist
|
||||
= find_applicable_accessible_methods_list (lc, t,
|
||||
name, arglist);
|
||||
list = chainon (rlist, list);
|
||||
}
|
||||
}
|
||||
object_done = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user