This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: aliasing warnings [patch]


>>>>> "Alexandre" == Alexandre Oliva <oliva@lsd.ic.unicamp.br> writes:

    Alexandre> Couldn't we just add struct rtx_def to union tree_node
    Alexandre> to get rid of some such warnings?

Not quite.  We're storing `union tree_node *'.  So, we'd need 

  union tree_or_rtl_ptr { union tree_node *u; struct rtx_def *r; };

That would be a nuisance, and seems unnecessary, IMO.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]