public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
@ 2012-03-31 14:46 hjl.tools at gmail dot com
  2012-03-31 14:52 ` [Bug bootstrap/52808] " hjl.tools at gmail dot com
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: hjl.tools at gmail dot com @ 2012-03-31 14:46 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

             Bug #: 52808
           Summary: [4.8 Regression] LTO bootstrap failed with
                    bootstrap-profiled
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com
                CC: areg.melikadamyan@gmail.com


On Linux/x86-64, revision 186029 failed to LTO bootstrap
with bootstrap-profiled, configured with

--prefix=/usr/local --enable-clocale=gnu --with-system-zlib --enable-shared
--with-demangler-in-ld --with-build-config=bootstrap-lto --with-fpmath=sse
--enable-languages=c,c++,fortran,java,lto,objc

and build with "make profiledbootstrap -j8". Stage3 gcc failed
to configure test in libiberty:

configure:4471:  /export/gnu/import/git/gcc-test-profile/bld/./prev-gcc/xgcc
-B/export/gnu/import/git/gcc-test-profile/bld/./prev-gcc/
-B/usr/local/x86_64-unknown-linux-gnu/bin/
-B/usr/local/x86_64-unknown-linux-gnu/bin/
-B/usr/local/x86_64-unknown-linux-gnu/lib/ -isystem
/usr/local/x86_64-unknown-linux-gnu/include -isystem
/usr/local/x86_64-unknown-linux-gnu/sys-include    -o conftest -g -O2
-flto=jobserver -frandom-seed=1 -fprofile-use  -static-libstdc++ -static-libgcc
 conftest.c  >&5
conftest.c: In function 'main':
conftest.c:29:1: note: file
/export/gnu/import/git/gcc-test-profile/bld/libiberty/conftest.gcda not found,
execution counts estimated
conftest.c:21:1: internal compiler error: in get_loop_body, at cfgloop.c:831
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
configure:4471: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include <ctype.h>
| #include <stdlib.h>
| #if ((' ' & 0x0FF) == 0x020)
| # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
| # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
| #else
| # define ISLOWER(c)              (('a' <= (c) && (c) <= 'i')               ||
('j' <= (c) && (c) <= 'r')                   || ('s' <= (c) && (c) <= 'z'))
| # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
| #endif
|
| #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
| int
| main ()
| {
|   int i;
|   for (i = 0; i < 256; i++)
|     if (XOR (islower (i), ISLOWER (i))
|       || toupper (i) != TOUPPER (i))
|       return 2;
|   return 0;
| }

Revision 185898 is OK.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
@ 2012-03-31 14:52 ` hjl.tools at gmail dot com
  2012-03-31 15:17 ` dominiq at lps dot ens.fr
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hjl.tools at gmail dot com @ 2012-03-31 14:52 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #1 from H.J. Lu <hjl.tools at gmail dot com> 2012-03-31 14:46:11 UTC ---
A small testcase:

[hjl@gnu-16 bld]$ cat x.c
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
#else
# define ISLOWER(c)              (('a' <= (c) && (c) <= 'i')               ||
('j' <= (c) && (c) <= 'r')                   || ('s' <= (c) && (c) <= 'z'))
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
#endif
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
int
main ()
{
  int i;
  for (i = 0; i < 256; i++)
    if (XOR (islower (i), ISLOWER (i))
      || toupper (i) != TOUPPER (i))
      return 2;
  return 0;
}
[hjl@gnu-16 bld]$ gcc -g -O2 -c -fprofile-use x.c
x.c: In function \u2018main\u2019:
x.c:19:1: note: file /export/gnu/import/git/gcc-test-profile/bld/x.gcda not
found, execution counts estimated
x.c:11:1: internal compiler error: in get_loop_body, at cfgloop.c:831
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
[hjl@gnu-16 bld]$


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
  2012-03-31 14:52 ` [Bug bootstrap/52808] " hjl.tools at gmail dot com
@ 2012-03-31 15:17 ` dominiq at lps dot ens.fr
  2012-03-31 17:19 ` hjl.tools at gmail dot com
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dominiq at lps dot ens.fr @ 2012-03-31 15:17 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2012-03-31 15:16:11 UTC ---
The error is the same as in pr52797.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
  2012-03-31 14:52 ` [Bug bootstrap/52808] " hjl.tools at gmail dot com
  2012-03-31 15:17 ` dominiq at lps dot ens.fr
@ 2012-03-31 17:19 ` hjl.tools at gmail dot com
  2012-04-01 16:10 ` markus at trippelsdorf dot de
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hjl.tools at gmail dot com @ 2012-03-31 17:19 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #3 from H.J. Lu <hjl.tools at gmail dot com> 2012-03-31 17:07:32 UTC ---
It may be caused by revision 185913:

http://gcc.gnu.org/ml/gcc-cvs/2012-03/msg01244.html


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2012-03-31 17:19 ` hjl.tools at gmail dot com
@ 2012-04-01 16:10 ` markus at trippelsdorf dot de
  2012-04-01 16:15 ` markus at trippelsdorf dot de
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: markus at trippelsdorf dot de @ 2012-04-01 16:10 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Markus Trippelsdorf <markus at trippelsdorf dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |markus at trippelsdorf dot
                   |                            |de

--- Comment #4 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-04-01 16:09:09 UTC ---
Most likely PR52820 is also a dup.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (3 preceding siblings ...)
  2012-04-01 16:10 ` markus at trippelsdorf dot de
@ 2012-04-01 16:15 ` markus at trippelsdorf dot de
  2012-04-02  9:13 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: markus at trippelsdorf dot de @ 2012-04-01 16:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #5 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-04-01 16:14:15 UTC ---
*** Bug 52820 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (4 preceding siblings ...)
  2012-04-01 16:15 ` markus at trippelsdorf dot de
@ 2012-04-02  9:13 ` rguenth at gcc dot gnu.org
  2012-04-02 10:41 ` rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-02  9:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2012-04-02
         AssignedTo|unassigned at gcc dot       |rguenth at gcc dot gnu.org
                   |gnu.org                     |
   Target Milestone|---                         |4.8.0
     Ever Confirmed|0                           |1

--- Comment #6 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-02 09:13:44 UTC ---
Mine.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (5 preceding siblings ...)
  2012-04-02  9:13 ` rguenth at gcc dot gnu.org
@ 2012-04-02 10:41 ` rguenth at gcc dot gnu.org
  2012-04-03 11:38 ` rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-02 10:41 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Depends on|                            |52756

--- Comment #7 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-02 10:39:39 UTC ---
The fix for this depends on fixing PR52756.  The issue here is -ftracer.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (6 preceding siblings ...)
  2012-04-02 10:41 ` rguenth at gcc dot gnu.org
@ 2012-04-03 11:38 ` rguenth at gcc dot gnu.org
  2012-04-03 11:41 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-03 11:38 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #8 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-03 11:38:10 UTC ---
Author: rguenth
Date: Tue Apr  3 11:38:04 2012
New Revision: 186104

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=186104
Log:
2012-04-03  Richard Guenther  <rguenther@suse.de>

    PR tree-optimization/52808
    * tracer.c (tail_duplicate): Return whether we have duplicated
    any block.
    (tracer): If we have duplicated any block, cleanup the CFG.
    * cfghooks.c (duplicate_block): If we duplicated a loop
    header but not its loop, destroy the loop because it now has
    multiple entries.
    * tree-ssa-threadupdate.c (thread_through_loop_header): Tell
    the cfg manipulation routines we are not creating a multiple
    entry loop.

    * gcc.dg/pr52808.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.dg/pr52808.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/cfghooks.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tracer.c
    trunk/gcc/tree-ssa-threadupdate.c


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (7 preceding siblings ...)
  2012-04-03 11:38 ` rguenth at gcc dot gnu.org
@ 2012-04-03 11:41 ` rguenth at gcc dot gnu.org
  2012-04-03 14:09 ` markus at trippelsdorf dot de
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-03 11:41 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #9 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-03 11:38:43 UTC ---
Fixed!


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (8 preceding siblings ...)
  2012-04-03 11:41 ` rguenth at gcc dot gnu.org
@ 2012-04-03 14:09 ` markus at trippelsdorf dot de
  2012-04-03 14:18 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: markus at trippelsdorf dot de @ 2012-04-03 14:09 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #10 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-04-03 14:08:36 UTC ---
Created attachment 27073
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27073
unreduced testcase

Unfortunately LTO bootstrap with bootstrap-profiled still fails
even after your fix:

 % /var/tmp/gcc_build_dir/./prev-gcc/xgcc -B/var/tmp/gcc_build_dir/./prev-gcc/
-B/usr/x86_64-pc-linux-gnu/bin/ -B/usr/x86_64-pc-linux-gnu/bin/
-B/usr/x86_64-pc-linux-gnu/lib/ -fprofile-use hashtab.i -O2
/home/markus/gcc/libiberty/hashtab.c: In function ‘htab_find_slot_with_hash’:
/home/markus/gcc/libiberty/hashtab.c:704:1: internal compiler error: in
get_loop_body, at cfgloop.c:831

Testcase (with .gcda file) is attached.


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (9 preceding siblings ...)
  2012-04-03 14:09 ` markus at trippelsdorf dot de
@ 2012-04-03 14:18 ` rguenth at gcc dot gnu.org
  2012-04-03 17:15 ` markus at trippelsdorf dot de
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-03 14:18 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

--- Comment #11 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-03 14:17:03 UTC ---
Confirmed.  Still tracer is the issue.  Testcase reduction appreciated (heh
...)


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (10 preceding siblings ...)
  2012-04-03 14:18 ` rguenth at gcc dot gnu.org
@ 2012-04-03 17:15 ` markus at trippelsdorf dot de
  2012-04-04 12:13 ` rguenth at gcc dot gnu.org
  2012-04-04 12:22 ` rguenth at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: markus at trippelsdorf dot de @ 2012-04-03 17:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #12 from Markus Trippelsdorf <markus at trippelsdorf dot de> 2012-04-03 17:13:27 UTC ---
Created attachment 27077
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27077
reduced testcase

Reduced with c_reduce (still needs hashtab.gcda)

 $ gcc -funroll-loops -ftracer -fvpt -fbranch-probabilities -O2 -w -c hashtab.i
hashtab.i: In function ‘htab_find_slot_with_hash’:
hashtab.i:437:1: internal compiler error: in get_loop_body, at cfgloop.c:831


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (11 preceding siblings ...)
  2012-04-03 17:15 ` markus at trippelsdorf dot de
@ 2012-04-04 12:13 ` rguenth at gcc dot gnu.org
  2012-04-04 12:22 ` rguenth at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-04 12:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

--- Comment #13 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-04 12:12:07 UTC ---
Author: rguenth
Date: Wed Apr  4 12:12:00 2012
New Revision: 186135

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=186135
Log:
2012-04-04  Richard Guenther  <rguenther@suse.de>

    PR tree-optimization/52808
    * tracer.c (tail_duplicate): Do not tail-duplicate loop header
    blocks.
    * Makefile.in (tracer.o): Depend on $(CFGLOOP_H).

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/Makefile.in
    trunk/gcc/tracer.c


^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug bootstrap/52808] [4.8 Regression] LTO bootstrap failed with bootstrap-profiled
  2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
                   ` (12 preceding siblings ...)
  2012-04-04 12:13 ` rguenth at gcc dot gnu.org
@ 2012-04-04 12:22 ` rguenth at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-04-04 12:22 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52808

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #14 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-04-04 12:22:21 UTC ---
Fixed.


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2012-04-04 12:22 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-31 14:46 [Bug bootstrap/52808] New: [4.8 Regression] LTO bootstrap failed with bootstrap-profiled hjl.tools at gmail dot com
2012-03-31 14:52 ` [Bug bootstrap/52808] " hjl.tools at gmail dot com
2012-03-31 15:17 ` dominiq at lps dot ens.fr
2012-03-31 17:19 ` hjl.tools at gmail dot com
2012-04-01 16:10 ` markus at trippelsdorf dot de
2012-04-01 16:15 ` markus at trippelsdorf dot de
2012-04-02  9:13 ` rguenth at gcc dot gnu.org
2012-04-02 10:41 ` rguenth at gcc dot gnu.org
2012-04-03 11:38 ` rguenth at gcc dot gnu.org
2012-04-03 11:41 ` rguenth at gcc dot gnu.org
2012-04-03 14:09 ` markus at trippelsdorf dot de
2012-04-03 14:18 ` rguenth at gcc dot gnu.org
2012-04-03 17:15 ` markus at trippelsdorf dot de
2012-04-04 12:13 ` rguenth at gcc dot gnu.org
2012-04-04 12:22 ` rguenth at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).