Commit bc639f90 by Mark Mitchell

* pt.c (tsubst_friend_class): Check for NULL.

From-SVN: r26688
parent 94ff101f
......@@ -4641,7 +4641,7 @@ tsubst_friend_class (friend_tmpl, args)
Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
for `S<int>', not the TEMPLATE_DECL. */
if (!DECL_CLASS_TEMPLATE_P (tmpl))
if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
{
tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
tmpl = maybe_get_template_decl_from_type_decl (tmpl);
......
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S {
template <class U>
friend struct S2;
};
template struct S<int>;
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