This is the mail archive of the gcc-patches@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]

4.1 branch open


The 4.1 branch is now open for changes under the usual regression-only
rules for release branches.  

Here are the changes that I commited during the release process.

--
Mark Mitchell
CodeSourcery
mark@codesourcery.com
(650) 331-3385 x713

2007-02-14  Mark Mitchell  <mark@codesourcery.com>

	* DEV-PHASE: Set to prerelease.
	* BASE-VER: Increment.

Index: DEV-PHASE
===================================================================
--- DEV-PHASE	(revision 121944)
+++ DEV-PHASE	(working copy)
@@ -0,0 +1 @@
+prerelease
Index: BASE-VER
===================================================================
--- BASE-VER	(revision 121944)
+++ BASE-VER	(working copy)
@@ -1 +1 @@
-4.1.2
+4.1.3

Index: htdocs/gcc-4.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/changes.html,v
retrieving revision 1.22
diff -c -5 -p -r1.22 changes.html
*** htdocs/gcc-4.1/changes.html	21 Mar 2006 11:19:31 -0000	1.22
--- htdocs/gcc-4.1/changes.html	14 Feb 2007 04:32:10 -0000
***************
*** 9,18 ****
--- 9,21 ----
  -->
  
  <body>
  <h1>GCC 4.1 Release Series<br />Changes, New Features, and Fixes</h1>
  
+ <p>The latest release in the 4.1 release series is
+ <a href="#4.1.2">GCC 4.1.2</a>.</p>
+ 
  <h2>Caveats</h2>
  
  <h2>General Optimizer Improvements</h2>
  
    <ul>
***************
*** 663,669 ****
--- 666,708 ----
  	various buffer overflow (and format string) vulnerabilities. Compared
  	to the mudflap bounds checking feature, the safe builtins have far
  	smaller overhead.  This means that programs built using safe builtins
  	should not experience any measurable slowdown.</li>
    </ul>
+ 
+ <h2><a name="4.1.2">GCC 4.1.2</a></h2>
+ 
+ <p>This is the <a
+ href="http://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&amp;resolution=FIXED&amp;target_milestone=4.1.2";>list
+ of problem reports (PRs)</a> from GCC's bug tracking system that are
+ known to be fixed in the 4.1.2 release. This list might not be
+ complete (that is, it is possible that some PRs that have been fixed
+ are not listed here).</p>
+ 
+ <p>
+   When generating code for a shared library, GCC now recognizes that
+   global functions may be replaced when the program runs.  Therefore,
+   it is now more conservative in deducing information from the bodies
+   of functions.  For example, in this example:
+ 
+   <pre>
+     void f() {}
+     void g() { 
+      try { f(); } 
+      catch (...) { 
+        cout << "Exception";
+      }
+     }
+   </pre>
+ 
+   G++ would previously have optimized away the catch clause, since it
+   would have concluded that <code>f</code> cannot throw exceptions.
+   Because users may replace <code>f</code> with another function in
+   the main body of the program, this optimization is unsafe, and is no
+   longer performed.  If you wish G++ to continue to optimize as
+   before, you must add a <code>throw()</code> clause to the
+   declaration of <code>f</code> to make clear that it does not throw
+   exceptions. 
+ </p>  
+ 
  </body>
  </html>
Index: htdocs/gcc-4.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/index.html,v
retrieving revision 1.5
diff -c -5 -p -r1.5 index.html
*** htdocs/gcc-4.1/index.html	27 May 2006 20:55:34 -0000	1.5
--- htdocs/gcc-4.1/index.html	14 Feb 2007 04:32:10 -0000
***************
*** 6,26 ****
  
  <body>
  
  <h1>GCC 4.1 Release Series</h1>
  
! <p>May 24, 2006</p>
  
  <p>The <a href="http://www.gnu.org";>GNU project</a> and the GCC
! developers are pleased to announce the release of GCC 4.1.1.</p>
  
  <p>This release is a bug-fix release, containing fixes for regressions
! in GCC 4.1.0 relative to previous releases of GCC.</p>
  
  <h2>Release History</h2>
  
  <dl>
  <dt>GCC 4.1.1</dt>
  <dd><a name="4.1.1">May 24, 2006</a>
      (<a href="changes.html">changes</a>)
  </dd>
  
--- 6,32 ----
  
  <body>
  
  <h1>GCC 4.1 Release Series</h1>
  
! <p>February 13, 2007</p>
  
  <p>The <a href="http://www.gnu.org";>GNU project</a> and the GCC
! developers are pleased to announce the release of GCC 4.1.2.</p>
  
  <p>This release is a bug-fix release, containing fixes for regressions
! in GCC 4.1.1 relative to previous releases of GCC.</p>
  
  <h2>Release History</h2>
  
  <dl>
+ <dt>GCC 4.1.2</dt>
+ <dd><a name="4.1.2">February 13, 2007</a>
+     (<a href="changes.html#4.1.2">changes</a>)
+ </dd>
+ 
+ <dl>
  <dt>GCC 4.1.1</dt>
  <dd><a name="4.1.1">May 24, 2006</a>
      (<a href="changes.html">changes</a>)
  </dd>
  
Index: htdocs/gcc-4.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/changes.html,v
retrieving revision 1.23
diff -c -5 -p -r1.23 changes.html
*** htdocs/gcc-4.1/changes.html	14 Feb 2007 04:32:44 -0000	1.23
--- htdocs/gcc-4.1/changes.html	14 Feb 2007 04:36:22 -0000
*************** are not listed here).</p>
*** 681,701 ****
  <p>
    When generating code for a shared library, GCC now recognizes that
    global functions may be replaced when the program runs.  Therefore,
    it is now more conservative in deducing information from the bodies
    of functions.  For example, in this example:
  
    <pre>
      void f() {}
      void g() { 
       try { f(); } 
       catch (...) { 
!        cout << "Exception";
       }
      }
    </pre>
  
    G++ would previously have optimized away the catch clause, since it
    would have concluded that <code>f</code> cannot throw exceptions.
    Because users may replace <code>f</code> with another function in
    the main body of the program, this optimization is unsafe, and is no
    longer performed.  If you wish G++ to continue to optimize as
--- 681,703 ----
  <p>
    When generating code for a shared library, GCC now recognizes that
    global functions may be replaced when the program runs.  Therefore,
    it is now more conservative in deducing information from the bodies
    of functions.  For example, in this example:
+ </p>
  
    <pre>
      void f() {}
      void g() { 
       try { f(); } 
       catch (...) { 
!        cout &lt;&lt; "Exception";
       }
      }
    </pre>
  
+ <p>
    G++ would previously have optimized away the catch clause, since it
    would have concluded that <code>f</code> cannot throw exceptions.
    Because users may replace <code>f</code> with another function in
    the main body of the program, this optimization is unsafe, and is no
    longer performed.  If you wish G++ to continue to optimize as
Index: htdocs/gcc-4.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/index.html,v
retrieving revision 1.6
diff -c -5 -p -r1.6 index.html
*** htdocs/gcc-4.1/index.html	14 Feb 2007 04:32:44 -0000	1.6
--- htdocs/gcc-4.1/index.html	14 Feb 2007 04:36:22 -0000
*************** in GCC 4.1.1 relative to previous releas
*** 22,32 ****
  <dt>GCC 4.1.2</dt>
  <dd><a name="4.1.2">February 13, 2007</a>
      (<a href="changes.html#4.1.2">changes</a>)
  </dd>
  
- <dl>
  <dt>GCC 4.1.1</dt>
  <dd><a name="4.1.1">May 24, 2006</a>
      (<a href="changes.html">changes</a>)
  </dd>
  
--- 22,31 ----
Index: develop.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/develop.html,v
retrieving revision 1.78
diff -c -5 -p -r1.78 develop.html
*** develop.html	3 Feb 2007 23:06:19 -0000	1.78
--- develop.html	14 Feb 2007 08:30:14 -0000
*************** stages of development, branch points, an
*** 367,377 ****
         |                                    \
         v                                     v
    GCC 4.2 Stage 2 (ends Mar 18 2006)       GCC 4.1.1 release (May 24 2006)
         |                                      \
         v                                       v
!   GCC 4.2 Stage 3                          GCC 4.1.2 release
         |
         |
         +-- GCC 4.2 branch created ------+
         |            (Oct 20 2006)        \
         v                                  v
--- 367,377 ----
         |                                    \
         v                                     v
    GCC 4.2 Stage 2 (ends Mar 18 2006)       GCC 4.1.1 release (May 24 2006)
         |                                      \
         v                                       v
!   GCC 4.2 Stage 3                          GCC 4.1.2 release (Feb 13 2007)
         |
         |
         +-- GCC 4.2 branch created ------+
         |            (Oct 20 2006)        \
         v                                  v
Index: releases.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/releases.html,v
retrieving revision 1.70
diff -c -5 -p -r1.70 releases.html
*** releases.html	3 Feb 2007 23:08:20 -0000	1.70
--- releases.html	14 Feb 2007 08:30:14 -0000
*************** who require a very high degree of stabil
*** 33,42 ****
--- 33,43 ----
  <p>Please refer to our <a href="develop.html#timeline">development plan</a>
  for future releases, and an alternative view of the release history.</p>
  
  <table border="1" cellspacing="0" cellpadding="5">
  <tr><th>Release</th><th>Release date</th></tr>
+ <tr><td><a href="gcc-4.1/">GCC 4.1.2</a></td>   <td>February 13, 2007</td></tr>
  <tr><td><a href="gcc-4.0/">GCC 4.0.4</a></td>   <td>January 31, 2007</td></tr>
  <tr><td><a href="gcc-4.1/">GCC 4.1.1</a></td>   <td>May 24, 2006</td></tr>
  <tr><td><a href="gcc-4.0/">GCC 4.0.3</a></td>   <td>March 10, 2006</td></tr>
  <tr><td><a href="gcc-3.4/">GCC 3.4.6</a></td>   <td>March 06, 2006</td></tr>
  <tr><td><a href="gcc-4.1/">GCC 4.1.0</a></td>   <td>February 28, 2006</td></tr>
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.599
diff -c -5 -p -r1.599 index.html
*** index.html	8 Feb 2007 21:52:23 -0000	1.599
--- index.html	14 Feb 2007 08:33:09 -0000
*************** mission statement</a>.</p>
*** 87,107 ****
  <h2 style="margin-top:0pt;">Status</h2>
  
  <dl class="status">
  
  <dt><strong>Current release series:</strong>
!   <a href="gcc-4.1/">GCC 4.1.1</a>
  </dt><dd>
    Status: 
    <a href="http://gcc.gnu.org/ml/gcc/2007-02/msg00061.html";>2007-02-04</a>
    (regression fixes and docs only).
    <br />
    <a
!    href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.1&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&a!
 mp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.1&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  <dt><strong>Previous release series:</strong>
    <a href="gcc-4.0/">GCC 4.0.4</a>
--- 87,107 ----
  <h2 style="margin-top:0pt;">Status</h2>
  
  <dl class="status">
  
  <dt><strong>Current release series:</strong>
!   <a href="gcc-4.1/">GCC 4.1.2</a>
  </dt><dd>
    Status: 
    <a href="http://gcc.gnu.org/ml/gcc/2007-02/msg00061.html";>2007-02-04</a>
    (regression fixes and docs only).
    <br />
    <a
!    href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.1&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&a!
 mp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.1&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  <dt><strong>Previous release series:</strong>
    <a href="gcc-4.0/">GCC 4.0.4</a>
*************** mission statement</a>.</p>
*** 109,119 ****
    Status:
    <a href="http://gcc.gnu.org/ml/gcc/2007-01/msg01106.html";>2007-01-27</a>
    (frozen).
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.0&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    Regressions</a>.
  </dd>
  
  <dt><strong>Next release series:</strong>
    GCC 4.2.0 (<a href="gcc-4.2/changes.html">changes</a>)
--- 109,119 ----
    Status:
    <a href="http://gcc.gnu.org/ml/gcc/2007-01/msg01106.html";>2007-01-27</a>
    (frozen).
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.0&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    Regressions</a>.
  </dd>
  
  <dt><strong>Next release series:</strong>
    GCC 4.2.0 (<a href="gcc-4.2/changes.html">changes</a>)
*************** mission statement</a>.</p>
*** 121,148 ****
    Status: <a href="develop.html#stage3">Stage 3</a>;
    <a href="http://gcc.gnu.org/ml/gcc/2006-10/msg00390.html";>2006-10-17</a>
    (regression fixes &amp; docs only).
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.2&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.2&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  <dt><strong>Active development:</strong>
    GCC 4.3.0 (<a href="gcc-4.3/changes.html">changes</a>)
  </dt><dd>
    Status: <a href="develop.html#stage1">Stage 1</a>;
    <a href="http://gcc.gnu.org/ml/gcc/2006-10/msg00390.html";>2006-10-17</a>
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.3&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.3.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.3&amp;target_milestone=4.0.4&amp;target_milestone=4.1.2&amp;target_milestone=4.3.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  </dl>
  
--- 121,148 ----
    Status: <a href="develop.html#stage3">Stage 3</a>;
    <a href="http://gcc.gnu.org/ml/gcc/2006-10/msg00390.html";>2006-10-17</a>
    (regression fixes &amp; docs only).
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.2&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.2&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.2.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  <dt><strong>Active development:</strong>
    GCC 4.3.0 (<a href="gcc-4.3/changes.html">changes</a>)
  </dt><dd>
    Status: <a href="develop.html#stage1">Stage 1</a>;
    <a href="http://gcc.gnu.org/ml/gcc/2006-10/msg00390.html";>2006-10-17</a>
    <br />
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.3&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.3.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;priority=P1&amp;priority=P2&amp;priority=P3&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&am!
 p;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Serious
    regressions</a>.
    <a
!   href="http://gcc.gnu.org/bugzilla/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=4.3&amp;target_milestone=4.0.4&amp;target_milestone=4.1.3&amp;target_milestone=4.3.0&amp;known_to_fail_type=allwordssubstr&amp;known_to_work_type=allwordssubstr&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;gcchost_type=allwordssubstr&amp;gcchost=&amp;gcctarget_type=allwordssubstr&amp;gcctarget=&amp;gccbuild_type=allwordssubstr&amp;gccbuild=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=SUSPENDED&amp;bug_status=WAITING&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-!
 0-0=">All
    regressions</a>.
  </dd>
  
  </dl>
  
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.600
diff -c -5 -p -r1.600 index.html
*** index.html	14 Feb 2007 08:33:25 -0000	1.600
--- index.html	14 Feb 2007 08:34:15 -0000
*************** mission statement</a>.</p>
*** 43,52 ****
--- 43,55 ----
  
  <h2 style="margin-top:0pt;">News</h2>
  
  <dl class="news">
  
+ <dt>February 13, 2007</dt>
+ <dd><a href="gcc-4.1/">GCC 4.1.2</a> has been released.</dd>
+ 
  <dt>January 25, 2007</dt>
  <dd>Interprocedural optimization passes have been reorganized to operate on
      SSA This enables more precise function analysis and optimization
      while inlining, significantly improving the performance of programs
      with high abstraction penalty.
Index: onlinedocs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/index.html,v
retrieving revision 1.83
diff -c -5 -p -r1.83 index.html
*** onlinedocs/index.html	31 Jan 2007 13:51:07 -0000	1.83
--- onlinedocs/index.html	14 Feb 2007 08:49:45 -0000
***************
*** 14,76 ****
  <!-- We don't link to the internals manuals for releases; people
       caring about internals should really be using the mainline
       versions.  -->
  
  <ul>
!   <li>GCC 4.1.1 manuals:
    <ul>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/";>GCC
!          4.1.1 Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gfortran/";>GCC
!          4.1.1 GFORTRAN Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gfortran.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gfortran.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gfortran-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcj/";>GCC
!          4.1.1 GCJ Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcj.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcj.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcj-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/cpp/";>GCC 
!          4.1.1 CPP Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/cpp.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/cpp.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/cpp-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_rm/";>GCC
!          4.1.1 GNAT Reference Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_rm.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_rm.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_rm-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_ugn_unw/";>GCC
!          4.1.1 GNAT User's Guide</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_ugn_unw.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_ugn_unw.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gnat_ugn_unw-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/fastjar/";>GCC
!          4.1.1 GNU JAR Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/fastjar.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/fastjar.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/fastjar-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/docs-sources.tar.gz";>Texinfo
!          sources of all the GCC 4.1.1 manuals</a></li>
    </ul></li>
  
    <li>GCC 4.0.4 manuals:
    <ul>
      <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.0.4/gcc/";>GCC
--- 14,76 ----
  <!-- We don't link to the internals manuals for releases; people
       caring about internals should really be using the mainline
       versions.  -->
  
  <ul>
!   <li>GCC 4.1.2 manuals:
    <ul>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/";>GCC
!          4.1.2 Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gfortran/";>GCC
!          4.1.2 GFORTRAN Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gfortran.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gfortran.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gfortran-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcj/";>GCC
!          4.1.2 GCJ Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcj.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcj.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcj-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/cpp/";>GCC 
!          4.1.2 CPP Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/cpp.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/cpp.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/cpp-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_rm/";>GCC
!          4.1.2 GNAT Reference Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_rm.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_rm.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_rm-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_ugn_unw/";>GCC
!          4.1.2 GNAT User's Guide</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_ugn_unw.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_ugn_unw.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gnat_ugn_unw-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/fastjar/";>GCC
!          4.1.2 GNU JAR Manual</a> (<a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/fastjar.pdf";>also
           in PDF</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/fastjar.ps.gz";>PostScript</a> or <a
!          href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/fastjar-html.tar.gz";>an
           HTML tarball</a>)</li>
!     <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.2/docs-sources.tar.gz";>Texinfo
!          sources of all the GCC 4.1.2 manuals</a></li>
    </ul></li>
  
    <li>GCC 4.0.4 manuals:
    <ul>
      <li><a href="http://gcc.gnu.org/onlinedocs/gcc-4.0.4/gcc/";>GCC
Index: bugzilla/contrib/bug_email.pl
===================================================================
RCS file: /cvs/gcc/wwwdocs/bugzilla/contrib/bug_email.pl,v
retrieving revision 1.40
diff -c -5 -p -r1.40 bug_email.pl
*** bugzilla/contrib/bug_email.pl	21 Oct 2006 03:12:03 -0000	1.40
--- bugzilla/contrib/bug_email.pl	14 Feb 2007 09:02:31 -0000
*************** sub writeBugIntoDB
*** 291,300 ****
--- 291,303 ----
  	    $version = "4.2.1";
      }
      elsif ($release =~ /.*4\.2\.0.*/o) {
  	    $version = "4.2.0";
      }
+     elsif ($release =~ /.*4\.1\.3.*/o) {
+ 	    $version = "4.1.3";
+     }
      elsif ($release =~ /.*4\.1\.2.*/o) {
  	    $version = "4.1.2";
      }
      elsif ($release =~ /.*4\.1\.1.*/o) {
  	    $version = "4.1.1";


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