On Tue, Jul 5, 2011 at 6:09 PM, Paulo J. Matos <pocmatos@xxxxxxxxx> wrote: > On 04/07/11 20:30, konica sarker wrote: >> >> Yes, suppose one node contains integer_type value in one address >> space, another in different. is it possible to find those address >> space ?(named address space) >> > > What does that Yes refer to? > I don't think you replied to Ian. I can't really understand what you mean > either. Are you talking about the compiler extension on address spaces? > > http://gcc.gnu.org/onlinedocs/gccint/Named-Address-Spaces.html#Named-Address-Spaces > "Yes" -means that it is about named address space. The link you have given I am talking about that named address space. My task is if two node "A" & "B" contain integer values, but if those are separate address space, is there any way to identify there address space? if two nodes are pointer type, in c-typeck.c file, with TYPE_ADDR_SPACE() it is possible to find out whether they are is same address space or not. but my question is how is it possible for integer type ?