compiler: Fix taking address of field of local variable.

From-SVN: r188299
This commit is contained in:
Ian Lance Taylor 2012-06-07 08:06:08 +00:00
parent 26127932dd
commit d8a5e488d5
1 changed files with 4 additions and 0 deletions

View File

@ -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*);