Commit d8a5e488 by Ian Lance Taylor

compiler: Fix taking address of field of local variable.

From-SVN: r188299
parent 26127932
......@@ -1888,6 +1888,10 @@ class Field_reference_expression : public Expression
do_is_addressable() const
{ return this->expr_->is_addressable(); }
void
do_address_taken(bool escapes)
{ this->expr_->address_taken(escapes); }
tree
do_get_tree(Translate_context*);
......
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