Re: Identifying a pointer to a structure

2015-12-09 Thread Uday Khedker
On 08/12/15 20:08, Richard Biener wrote: On Tue, Dec 8, 2015 at 3:35 PM, Richard Biener wrote: On Tue, Dec 8, 2015 at 3:22 PM, Uday P. Khedker wrote: Richard Biener wrote on 12/03/2015 03:32 PM: On Thu, Dec 3, 2015 at 8:54 AM, Uday P. Khedker wrote: We are implementing points-to analysis

Re: Identifying a pointer to a structure

2015-12-08 Thread Richard Biener
On Tue, Dec 8, 2015 at 3:22 PM, Uday P. Khedker wrote: > > > Richard Biener wrote on 12/03/2015 03:32 PM: >> >> On Thu, Dec 3, 2015 at 8:54 AM, Uday P. Khedker >> wrote: >>> >>> We are implementing points-to analysis in GCC 4.7.2 and need to >>> distinguish >>> between >>> pointers to scalars and

Re: Identifying a pointer to a structure

2015-12-08 Thread Richard Biener
On Tue, Dec 8, 2015 at 3:35 PM, Richard Biener wrote: > On Tue, Dec 8, 2015 at 3:22 PM, Uday P. Khedker wrote: >> >> >> Richard Biener wrote on 12/03/2015 03:32 PM: >>> >>> On Thu, Dec 3, 2015 at 8:54 AM, Uday P. Khedker >>> wrote: We are implementing points-to analysis in GCC 4.7.2 an

Re: Identifying a pointer to a structure

2015-12-08 Thread Uday P. Khedker
Richard Biener wrote on 12/03/2015 03:32 PM: On Thu, Dec 3, 2015 at 8:54 AM, Uday P. Khedker wrote: We are implementing points-to analysis in GCC 4.7.2 and need to distinguish between pointers to scalars and the pointers to structures. This distinction by using the TYPE (TREE_TYPE) hierarchy

Re: Identifying a pointer to a structure

2015-12-03 Thread Richard Biener
On Thu, Dec 3, 2015 at 8:54 AM, Uday P. Khedker wrote: > We are implementing points-to analysis in GCC 4.7.2 and need to distinguish > between > pointers to scalars and the pointers to structures. This distinction by > using the TYPE (TREE_TYPE) > hierarchy of the tree node of the pointer. We have