This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Where are the gcc 3.2.0 changes listed?
- From: Kelley Cook <robert_k_cook at comerica dot com>
- To: Jeff Garzik <jgarzik at redhat dot com>, gcc at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Thu, 14 Nov 2002 13:12:14 -0500
- Subject: Where are the gcc 3.2.0 changes listed?
- References: <20021114112948.M10394@devserv.devel.redhat.com>
Though the 3.2.1 changes aren't fully listed here yet, this patch should
at least clear up the confusing state of the webpage that Jeff ran into.
Except for adding in a missing </li> tag, it just properly sections
out what changed from 3.2 or 3.2.1 respectively.
The larger problem is that the actual changes for 3.2 were only given by
reference to message http://gcc.gnu.org/ml/gcc/2002-08/msg00405.html.
Gerald, would you like me to integrate this message into the bug fixes
section, it would only take a few minutes.
Kelley Cook
*** changesnew.html Thu Nov 14 12:37:20 2002
--- changes.html Thu Nov 14 12:55:44 2002
***************
*** 1,7 ****
<html>
<head>
! <title>GCC 3.2 Changes, New Features, and Fixes</title>
</head>
<!-- GCC maintainers, please do not hesitate to update/contribute entries
--- 1,7 ----
<html>
<head>
! <title>GCC 3.2.x Changes, New Features, and Fixes</title>
</head>
<!-- GCC maintainers, please do not hesitate to update/contribute entries
***************
*** 9,21 ****
-->
<body>
- <h1>GCC 3.2 Changes, New Features, and Fixes</h1>
<!-- Changes for later point releases should be added at the top. -->
! <h2>Additional changes in GCC 3.2.1 (not released yet)</h2>
! <h3>C/C++/Objective-C</h3>
<ul>
<li>The method of constructing the list of directories to be searched
--- 9,20 ----
-->
<body>
<!-- Changes for later point releases should be added at the top. -->
! <h1>Changes in GCC 3.2.1 (not released yet)</h1>
! <h2>C/C++/Objective-C</h2>
<ul>
<li>The method of constructing the list of directories to be searched
***************
*** 36,41 ****
--- 35,62 ----
widespread use.)</li>
</ul>
+ <h2>New Targets and Target Specific Improvements</h2>
+
+ <h3>IA-32</h3>
+ <ul>
+ <li>Fixed a number of bugs in SSE and MMX intrinsics.</li>
+ <li>Fixed common compiler crashes with SSE instruction set enabled
+ (implied by <code>-march=pentium3</code>, <code>pentium4</code>,
+ <code>athlon-xp</code>)</li>
+ <li>__m128 and __m128i is not 128bit aligned when used in structures.</li>
+ </ul>
+ <h3>x86-64</h3>
+
+ <ul>
+ <li>A bug whereby the compiler could generate bad code for
+ <code>bzero</code> has been fixed.</li>
+ <li>ABI fixes (implying ABI incompatibilities with previous version in some
+ corner cases)</li>
+ <li>Fixed prefetch code generation</li>
+ </ul>
+
+ <h1>Changes in GCC 3.2</h1>
+
<h2>Bug Fixes</h2>
<p>See <a
***************
*** 84,108 ****
</ul>
- <h2>New Targets and Target Specific Improvements</h2>
-
- <h3>IA-32</h3>
- <ul>
- <li>Fixed a number of bugs in SSE and MMX intrinsics.</li>
- <li>Fixed common compiler crashes with SSE instruction set enabled
- (implied by <code>-march=pentium3</code>, <code>pentium4</code>,
- <code>athlon-xp</code>)</li>
- <li>__m128 and __m128i is not 128bit aligned when used in structures.
- </ul>
- <h3>x86-64</h3>
-
- <ul>
- <li>A bug whereby the compiler could generate bad code for
- <code>bzero</code> has been fixed.</li>
- <li>ABI fixes (implying ABI incompatibilities with previous version in some
- corner cases)</li>
- <li>Fixed prefetch code generation</li>
- </ul>
-
</body>
</html>
--- 105,109 ----