Re: Question on secutiry check of ifcombine pass

2025-08-06 Thread ywgrit via Gcc-bugs
Richard Biener 于2025年8月6日周三 14:34写道: > On Wed, 6 Aug 2025, ywgrit wrote: > > > I have the following question: > > > > // Way.h > > struct waymapt > > { > > int fillnum; > > int num; > > }; > > typedef waymapt* waymappt; > > > > class wayobj > > { > > public: > > int bound; > > int *ma

Re: Question on secutiry check of ifcombine pass

2025-08-05 Thread Richard Biener via Gcc-bugs
On Wed, 6 Aug 2025, ywgrit wrote: > I have the following question: > > // Way.h > struct waymapt > { > int fillnum; > int num; > }; > typedef waymapt* waymappt; > > class wayobj > { > public: > int bound; > int *maparp; > waymappt waymap; > int makebound2(int fillnum, int ite

Question on secutiry check of ifcombine pass

2025-08-05 Thread ywgrit via Gcc-bugs
I have the following question: // Way.h struct waymapt { int fillnum; int num; }; typedef waymapt* waymappt; class wayobj { public: int bound; int *maparp; waymappt waymap; int makebound2(int fillnum, int iters); void create(int size); }; // WayInit.cpp #include #includ