GCC 4.2.3 Released
GCC 4.2.3 has been released. GCC 4.2.3 is a bug-fix release, containing fixes for regressions in GCC 4.2.2 relative to previous GCC releases. This release is available from the FTP servers listed at: http://www.gnu.org/order/ftp.html Please do not contact me directly regarding questions or comments about this release. Instead, use the resources available from http://gcc.gnu.org. As always, a vast number of people contributed to this GCC release -- far too many to thank individually! -- Joseph S. Myers [EMAIL PROTECTED]
Re: c++0x concepts in gcc call
On Tue, 29 Jan 2008, Doug Gregor wrote: > Okay, done. Thanks! I added the minor patch below on top. Gerald Index: svn.html === RCS file: /cvs/gcc/wwwdocs/htdocs/svn.html,v retrieving revision 1.75 diff -u -3 -p -r1.75 svn.html --- svn.html3 Feb 2008 20:40:27 - 1.75 +++ svn.html3 Feb 2008 21:58:16 - @@ -778,7 +778,7 @@ be prefixed with the initials of the dis cxx0x-branch - This branch was for developed of C++0x features, and all + This branch was for the development of C++0x features, and all features developed on this branch have been merged to mainline. Future C++0x features will be developed against mainline or, in the case of concepts, on
RE: Replying to a mailing list thread
On 02 February 2008 15:39, Rodrigo Dominguez wrote: >> I'm assuming that he meant an older message for which his only copy is >> in the mailing list archives. In that case, he would have to use the >> mailer daemon message request feature. >> > > Exactly! > > What do you mean by the "mailer daemon message request feature" and how do > I use it? > > Rodrigo Find the copy in the mailing list archive. For instance, your first post: http://gcc.gnu.org/ml/gcc/2008-02/msg00018.html Look at the "raw text" version of the post. http://gcc.gnu.org/cgi-bin/get-raw-msg?listname=gcc&date=2008-02&msgid=Pine.GS O.4.58.0802021000330.21150%40gateway.ece.neu.edu (http://tinyurl.com/2zuhtb to avoid wrapping) You can see the "From" and "Return-Path" headers are of the form: "gcc-return--listarch-gcc=gcc" bla bla bla. That decimal number is the index number of the post in the list archive. You can get the mailer daemon to re-send you a copy of the original post by sending a blank email to "gcc-get.DECIMALNUMBER" at gcc dot gnu dot org. When the resent copy arrives, you can then reply to it as normal. cheers, DaveK -- Can't think of a witty .sigline today
RE: Replying to a mailing list thread
> That decimal number is the index number of the post in the list archive. > You can get the mailer daemon to re-send you a copy of the original post by > sending a blank email to "gcc-get.DECIMALNUMBER" at gcc dot gnu dot > org. Will the message returned by the mailing list processor still contain obfuscated addresses? I suppose it would, if the message is extracted directly from the archives. Cheers, Ben
Why is DImode aligned at 8 byte for i386?
DImode is aligned at 8 byte in i386. Since 32bit doesn't have 64bit register, can we align DImode at 4byte instead of 8 for i386? It shouldn't have any negative impact on performance. H.J.