public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/42386]  New: ICE in ipcp_iterate_stage, at ipa-cp.c:766
@ 2009-12-15 23:12 dirtyepic at gentoo dot org
  2009-12-15 23:13 ` [Bug c++/42386] " dirtyepic at gentoo dot org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: dirtyepic at gentoo dot org @ 2009-12-15 23:12 UTC (permalink / raw)
  To: gcc-bugs

found compiling opensp:

$ g++ -O2 Big5CodingSystem.ii
Big5CodingSystem.cxx:65:1: internal compiler error: in ipcp_iterate_stage, at
ipa-cp.c:766

$ gcc -v
Using built-in specs.
COLLECT_GCC=/usr/x86_64-unknown-linux-gnu/gcc-bin/4.5.0-pre9999/gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-unknown-linux-gnu/4.5.0-pre9999/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with:
/var/tmp/portage/sys-devel/gcc-4.5.0_pre9999/work/gcc-4.5.0-9999/configure
--prefix=/usr --bindir=/usr/x86_64-unknown-linux-gnu/gcc-bin/4.5.0-pre9999
--includedir=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.0-pre9999/include
--datadir=/usr/share/gcc-data/x86_64-unknown-linux-gnu/4.5.0-pre9999
--mandir=/usr/share/gcc-data/x86_64-unknown-linux-gnu/4.5.0-pre9999/man
--infodir=/usr/share/gcc-data/x86_64-unknown-linux-gnu/4.5.0-pre9999/info
--with-gxx-include-dir=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.0-pre9999/include/g++-v4
--host=x86_64-unknown-linux-gnu --build=x86_64-unknown-linux-gnu
--disable-altivec --disable-fixed-point --with-ppl --with-cloog --disable-nls
--with-system-zlib --disable-checking --disable-werror --enable-secureplt
--enable-multilib --disable-libmudflap --disable-libssp --enable-libgomp
--enable-cld
--with-python-dir=/share/gcc-data/x86_64-unknown-linux-gnu/4.5.0-pre9999/python
--disable-libgcj --enable-languages=c,c++ --enable-shared
--enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
--with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo SVN'
--enable-lto --enable-checking
Thread model: posix
gcc version 4.5.0-pre9999 20091215 (experimental) rev. 155245 (Gentoo SVN)


-- 
           Summary: ICE in ipcp_iterate_stage, at ipa-cp.c:766
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dirtyepic at gentoo dot org
GCC target triplet: x86_64-unknown-linux-gnu


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


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

* [Bug c++/42386] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
@ 2009-12-15 23:13 ` dirtyepic at gentoo dot org
  2009-12-16 12:22 ` [Bug tree-optimization/42386] [4.5 Regression] " rguenth at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dirtyepic at gentoo dot org @ 2009-12-15 23:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from dirtyepic at gentoo dot org  2009-12-15 23:12 -------
Created an attachment (id=19314)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=19314&action=view)
Big5CodingSystem.ii


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
  2009-12-15 23:13 ` [Bug c++/42386] " dirtyepic at gentoo dot org
@ 2009-12-16 12:22 ` rguenth at gcc dot gnu dot org
  2009-12-16 14:43 ` hjl dot tools at gmail dot com
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-12-16 12:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2009-12-16 12:22 -------
Confirmed.

# 1 "CodingSystem.h" 1
#pragma interface
# 1 "types.h" 1
# 15 "CodingSystem.h" 1
class Decoder { unsigned minBytesPerChar() const; };
class Encoder { class Handler {   }; };
class InputCodingSystem { virtual bool isIdentity() const; };
class OutputCodingSystem { public: virtual ~OutputCodingSystem(); 
virtual Encoder *makeEncoder() const = 0; };
class CodingSystem : public InputCodingSystem, public OutputCodingSystem 
{ public: ~CodingSystem() {} };
# 8 "Big5CodingSystem.h" 1
class Big5CodingSystem : public CodingSystem 
{   Decoder *makeDecoder() const;   Encoder *makeEncoder() const; };
Encoder *Big5CodingSystem::makeEncoder() const { }


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jamborm at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
          Component|c++                         |tree-optimization
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2009-12-16 12:22:07
               date|                            |
            Summary|ICE in ipcp_iterate_stage,  |[4.5 Regression] ICE in
                   |at ipa-cp.c:766             |ipcp_iterate_stage, at ipa-
                   |                            |cp.c:766
   Target Milestone|---                         |4.5.0


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
  2009-12-15 23:13 ` [Bug c++/42386] " dirtyepic at gentoo dot org
  2009-12-16 12:22 ` [Bug tree-optimization/42386] [4.5 Regression] " rguenth at gcc dot gnu dot org
@ 2009-12-16 14:43 ` hjl dot tools at gmail dot com
  2009-12-16 16:34 ` hubicka at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hjl dot tools at gmail dot com @ 2009-12-16 14:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from hjl dot tools at gmail dot com  2009-12-16 14:43 -------
It is caused by revision 155143:

http://gcc.gnu.org/ml/gcc-cvs/2009-12/msg00287.html


-- 

hjl dot tools at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at redhat dot com


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (2 preceding siblings ...)
  2009-12-16 14:43 ` hjl dot tools at gmail dot com
@ 2009-12-16 16:34 ` hubicka at gcc dot gnu dot org
  2009-12-16 16:41 ` jakub at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hubicka at gcc dot gnu dot org @ 2009-12-16 16:34 UTC (permalink / raw)
  To: gcc-bugs



-- 

hubicka at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |hubicka at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2009-12-16 12:22:07         |2009-12-16 16:34:00
               date|                            |


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (3 preceding siblings ...)
  2009-12-16 16:34 ` hubicka at gcc dot gnu dot org
@ 2009-12-16 16:41 ` jakub at gcc dot gnu dot org
  2009-12-16 17:05 ` jakub at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-16 16:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jakub at gcc dot gnu dot org  2009-12-16 16:40 -------
Both the base and deleting dtor in this case are !DECL_COMDAT,
DECL_COMDAT_GROUP != NULL, DECL_EXTERNAL.  But they are emitted anyway, despite
the DECL_EXTERNAL, as the base dtor is needed.


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (4 preceding siblings ...)
  2009-12-16 16:41 ` jakub at gcc dot gnu dot org
@ 2009-12-16 17:05 ` jakub at gcc dot gnu dot org
  2009-12-16 17:20 ` jakub at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-16 17:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jakub at gcc dot gnu dot org  2009-12-16 17:04 -------
Actually they aren't emitted, they are really just external.
And they are supposed to be external.

I guess we shouldn't "optimize" known external ctors or dtors.
The question then is whether for the DECL_DEFER_OUTPUT ones we sometimes don't
keep node->same_comdat_group and/or node->same_body even when we decide at the
end that they will be really external.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu dot org


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (5 preceding siblings ...)
  2009-12-16 17:05 ` jakub at gcc dot gnu dot org
@ 2009-12-16 17:20 ` jakub at gcc dot gnu dot org
  2009-12-16 17:31 ` jakub at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-16 17:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jakub at gcc dot gnu dot org  2009-12-16 17:20 -------
Created an attachment (id=19322)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=19322&action=view)
gcc45-pr42386.patch

Fix for this testcase.  If we already at maybe_clone_body time know that
the ctor or dtor will not be emitted in the current TU, we shouldn't create any
same_body/same_comdat_group relations between the symbols.
The question is if for DECL_DEFER_OUTPUT we might decide later on that it is
really DECL_EXTERNAL (i.e. not clear DECL_EXTERNAL on it).
Alternatively same_comdat_group could be only considered for !DECL_EXTERNAL
decls.


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (7 preceding siblings ...)
  2009-12-16 17:31 ` jakub at gcc dot gnu dot org
@ 2009-12-16 17:31 ` hjl dot tools at gmail dot com
  2009-12-16 17:34 ` jakub at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hjl dot tools at gmail dot com @ 2009-12-16 17:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from hjl dot tools at gmail dot com  2009-12-16 17:30 -------
(In reply to comment #6)
> Created an attachment (id=19322)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=19322&action=view) [edit]
> gcc45-pr42386.patch
> 
> Fix for this testcase.  If we already at maybe_clone_body time know that
> the ctor or dtor will not be emitted in the current TU, we shouldn't create any
> same_body/same_comdat_group relations between the symbols.
> The question is if for DECL_DEFER_OUTPUT we might decide later on that it is
> really DECL_EXTERNAL (i.e. not clear DECL_EXTERNAL on it).
> Alternatively same_comdat_group could be only considered for !DECL_EXTERNAL
> decls.
> 

Do we need those

# 1 "types.h" 1
# 15 "CodingSystem.h" 1

in testcase?


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (6 preceding siblings ...)
  2009-12-16 17:20 ` jakub at gcc dot gnu dot org
@ 2009-12-16 17:31 ` jakub at gcc dot gnu dot org
  2009-12-16 17:31 ` hjl dot tools at gmail dot com
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-16 17:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jakub at gcc dot gnu dot org  2009-12-16 17:31 -------
Created an attachment (id=19323)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=19323&action=view)
gcc45-pr42386.patch

Another alternative - don't mark nodes as reachable because of
same_comdat_group links if they are DECL_EXTERNAL.  Fixes this too, and has the
advantage that we don't have issues with DECL_DEFER_OUTPUT dtors we decided to
keep DECL_EXTERNAL.


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (8 preceding siblings ...)
  2009-12-16 17:31 ` hjl dot tools at gmail dot com
@ 2009-12-16 17:34 ` jakub at gcc dot gnu dot org
  2009-12-16 19:32 ` jason at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-16 17:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from jakub at gcc dot gnu dot org  2009-12-16 17:33 -------
Re: #c7, those 2 lines aren't needed, the other two # lines are needed as is
#pragma interface.


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (9 preceding siblings ...)
  2009-12-16 17:34 ` jakub at gcc dot gnu dot org
@ 2009-12-16 19:32 ` jason at gcc dot gnu dot org
  2009-12-17 19:30 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-12-16 19:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jason at gcc dot gnu dot org  2009-12-16 19:32 -------
The second patch seems better.


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (10 preceding siblings ...)
  2009-12-16 19:32 ` jason at gcc dot gnu dot org
@ 2009-12-17 19:30 ` jakub at gcc dot gnu dot org
  2009-12-17 20:56 ` jakub at gcc dot gnu dot org
  2009-12-22 18:18 ` hjl at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-17 19:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jakub at gcc dot gnu dot org  2009-12-17 19:29 -------
Subject: Bug 42386

Author: jakub
Date: Thu Dec 17 19:29:48 2009
New Revision: 155321

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155321
Log:
        PR c++/42386
        * ipa.c (function_and_variable_visibility): Clear same_comdat_group
        links of DECL_EXTERNAL nodes.

        * g++.dg/opt/dtor3.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/opt/dtor3.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (11 preceding siblings ...)
  2009-12-17 19:30 ` jakub at gcc dot gnu dot org
@ 2009-12-17 20:56 ` jakub at gcc dot gnu dot org
  2009-12-22 18:18 ` hjl at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-17 20:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jakub at gcc dot gnu dot org  2009-12-17 20:56 -------
Fixed.


-- 

jakub at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/42386] [4.5 Regression] ICE in ipcp_iterate_stage, at ipa-cp.c:766
  2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
                   ` (12 preceding siblings ...)
  2009-12-17 20:56 ` jakub at gcc dot gnu dot org
@ 2009-12-22 18:18 ` hjl at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: hjl at gcc dot gnu dot org @ 2009-12-22 18:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from hjl at gcc dot gnu dot org  2009-12-22 18:18 -------
Subject: Bug 42386

Author: hjl
Date: Tue Dec 22 18:17:53 2009
New Revision: 155403

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155403
Log:
Backport testcases from mainline.

2009-12-22  H.J. Lu  <hongjiu.lu@intel.com>

        Backport from mainline:
        2009-12-19  Dodji Seketeli  <dodji@redhat.com>

        PR c++/42225
        * g++.dg/template/typedef26.C: New test.

        2009-12-17  Jakub Jelinek  <jakub@redhat.com>

        PR c++/42386
        * g++.dg/opt/dtor3.C: New test.

        2009-12-15  Jason Merrill  <jason@redhat.com>

        PR c++/42358
        * g++.dg/cpp0x/variadic98.C: New.

        2009-12-13  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/42357
        * g++.dg/torture/pr42357.C: New testcase.

Added:
    branches/gcc-4_4-branch/gcc/testsuite/g++.dg/cpp0x/variadic98.C
      - copied unchanged from r155402,
trunk/gcc/testsuite/g++.dg/cpp0x/variadic98.C
    branches/gcc-4_4-branch/gcc/testsuite/g++.dg/opt/dtor3.C
      - copied unchanged from r155402, trunk/gcc/testsuite/g++.dg/opt/dtor3.C
    branches/gcc-4_4-branch/gcc/testsuite/g++.dg/template/typedef26.C
      - copied unchanged from r155402,
trunk/gcc/testsuite/g++.dg/template/typedef26.C
    branches/gcc-4_4-branch/gcc/testsuite/g++.dg/torture/pr42357.C
      - copied unchanged from r155402,
trunk/gcc/testsuite/g++.dg/torture/pr42357.C
Modified:
    branches/gcc-4_4-branch/gcc/testsuite/ChangeLog


-- 


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


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

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

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-15 23:12 [Bug c++/42386] New: ICE in ipcp_iterate_stage, at ipa-cp.c:766 dirtyepic at gentoo dot org
2009-12-15 23:13 ` [Bug c++/42386] " dirtyepic at gentoo dot org
2009-12-16 12:22 ` [Bug tree-optimization/42386] [4.5 Regression] " rguenth at gcc dot gnu dot org
2009-12-16 14:43 ` hjl dot tools at gmail dot com
2009-12-16 16:34 ` hubicka at gcc dot gnu dot org
2009-12-16 16:41 ` jakub at gcc dot gnu dot org
2009-12-16 17:05 ` jakub at gcc dot gnu dot org
2009-12-16 17:20 ` jakub at gcc dot gnu dot org
2009-12-16 17:31 ` jakub at gcc dot gnu dot org
2009-12-16 17:31 ` hjl dot tools at gmail dot com
2009-12-16 17:34 ` jakub at gcc dot gnu dot org
2009-12-16 19:32 ` jason at gcc dot gnu dot org
2009-12-17 19:30 ` jakub at gcc dot gnu dot org
2009-12-17 20:56 ` jakub at gcc dot gnu dot org
2009-12-22 18:18 ` hjl at gcc dot gnu dot 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).