On Thu, Nov 1, 2012 at 2:11 PM, Xinliang David Li <davi...@google.com> wrote:
> The TREE_ADDRESSABLE check seems redundant -- if the var_decl (instead > of ssa name) appears in the assignment, why would it not be > 'addressable'? And being addressable does not mean it is address taken > either. Yes, it does mean that. > Diego, is there a way to check address taken attribute for auto vars? TREE_ADDRESSABLE is it. If that bit is set, the address of the variable has been taken. Diego.