This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/26022] [4.2 Regression] ice at cp/cp-objcp-common.c:101



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]