mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 14:41:14 +08:00
Don't crash on variable initialization from erroneous receive.
From-SVN: r168175
This commit is contained in:
parent
2a4eaec2b9
commit
6430af3843
@ -3165,7 +3165,7 @@ Variable::type_from_tuple(Expression* expr, bool report_error) const
|
||||
{
|
||||
Expression* channel = expr->receive_expression()->channel();
|
||||
Type* channel_type = channel->type();
|
||||
if (channel_type->is_error_type())
|
||||
if (channel_type->channel_type() == NULL)
|
||||
return Type::make_error_type();
|
||||
return channel_type->channel_type()->element_type();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user