------- Comment #6 from pinskia at gcc dot gnu dot org 2006-12-09 19:11 ------- We have: if ((fallback & fb_lvalue) == 0) { result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp"); ret = GS_ALL_DONE; }
But fallback is "fallback=fb_either" so the above if is false. So we have two problems, an ineffient gimplification and a gimplification that is wrong. The ineffient gimplification is easy to fix. I will now go to figure out why we get an invalid one. -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot gnu |pinskia at gcc dot gnu dot |dot org |org Status|NEW |ASSIGNED http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30132