[Bug tree-optimization/27800] extra temprorary created when gimplifying return
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-29 21:13 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON
[Bug tree-optimization/27800] extra temprorary created when gimplifying return
--- Comment #1 from dann at godzilla dot ics dot uci dot edu 2006-05-29 20:51 --- An even simpler example which occurs quite frequently in programs: int jjj (int a){ return bar (a); } jjj (a) { int D.1891; int D.1892; D.1892 = bar (a); D.1891 = D.1892; return D.1891; } --