Commit 968d62b5 by Bryce McKinlay Committed by Bryce McKinlay

class.c (interface_of_p): Check for null TYPE_BINFO.

2004-07-09  Bryce McKinlay  <mckinlay@redhat.com>

	* class.c (interface_of_p): Check for null TYPE_BINFO.

From-SVN: r84418
parent 8a2cee38
2004-07-09 Bryce McKinlay <mckinlay@redhat.com>
* class.c (interface_of_p): Check for null TYPE_BINFO.
2004-07-09 Nathan Sidwell <nathan@codesourcery.com>
* class.c (make_class): Do not create binfo here.
......
......@@ -533,8 +533,9 @@ interface_of_p (tree type1, tree type2)
int n, i;
tree basetype_vec;
if (!(basetype_vec = BINFO_BASE_BINFOS (TYPE_BINFO (type2))))
if (! TYPE_BINFO (type2))
return 0;
basetype_vec = BINFO_BASE_BINFOS (TYPE_BINFO (type2));
n = TREE_VEC_LENGTH (basetype_vec);
for (i = 0; i < n; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment