Re: SSA identifiers

2013-08-27 Thread Richard Biener
On Thu, Jun 27, 2013 at 8:52 PM, Andrew MacLeod wrote: > On 06/27/2013 02:39 PM, Jakub Jelinek wrote: >> >> >> in tree-ssanames.c:release_ssa_names() : >> >> if (! SSA_NAME_IN_FREE_LIST (var)) >> { >>tree saved_ssa_name_var = SSA_NAME_VAR (var); >>int saved_ssa_name_version =

Re: SSA identifiers

2013-06-27 Thread Andrew MacLeod
On 06/27/2013 02:39 PM, Jakub Jelinek wrote: in tree-ssanames.c:release_ssa_names() : if (! SSA_NAME_IN_FREE_LIST (var)) { tree saved_ssa_name_var = SSA_NAME_VAR (var); int saved_ssa_name_version = SSA_NAME_VERSION (var); use_operand_p imm = &(SSA_NAME_IMM_USE_NODE (va

Re: SSA identifiers

2013-06-27 Thread Jakub Jelinek
On Thu, Jun 27, 2013 at 02:25:21PM -0400, Andrew MacLeod wrote: > I'm doing some trial file conversions to my proposed wrapper > classes, I'm seeing a couple of places which aren't mapping > properly (they triggered compile errors), and I think its because > there is a couple of bugs regarding

SSA identifiers

2013-06-27 Thread Andrew MacLeod
I'm doing some trial file conversions to my proposed wrapper classes, I'm seeing a couple of places which aren't mapping properly (they triggered compile errors), and I think its because there is a couple of bugs regarding the use of IDENTIFIERS in ssanames.. (I wasn't even aware you coul