------- Comment #6 from pinskia at gcc dot gnu dot org 2006-01-30 02:29 ------- In 4.1.0, we got: D.2121 = currentDate () [return slot optimization]; D.2122 = monthName (&D.2121, 1) [return slot optimization]; D.2126 = convertToQCString (&D.2122); D.2123 = D.2126; data (&D.2123);
But in 4.2.0, we get: D.2033 = currentDate () [return slot optimization]; D.2034 = monthName (&D.2033, 1); D.2039 = convertToQCString (&D.2034); D.2035 = D.2039; data (&D.2035); Note no rso on monthName. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26022