This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/26022] [4.2 Regression] ice at cp/cp-objcp-common.c:101
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 30 Jan 2006 02:29:17 -0000
- Subject: [Bug c++/26022] [4.2 Regression] ice at cp/cp-objcp-common.c:101
- References: <bug-26022-9596@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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