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]
Other format: [Raw text]

compound expr in trees


Hi,

I'm fiddling with the trees and am trying to insert calls at certain
places. I'm trying to turn 'a.x=0' into '(f(),a.x)=0'. It doesn't quite
work. At least not when a.x is a bitfield. When looking at what gcc
generates on the input '(f(),a.x)=0' I find that it's '(f(),a.x=0)'. Why?
and, more importantly, *where* does this happen?

/Per


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