public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
@ 2015-02-13 21:43 marxin at gcc dot gnu.org
  2015-02-15 19:18 ` [Bug ipa/65059] " hubicka at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2015-02-13 21:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

            Bug ID: 65059
           Summary: [5 Regression] Chrome LTO: lto1: internal compiler
                    error: in ipa_comdats, at ipa-comdats.c:360
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ipa
          Assignee: unassigned at gcc dot gnu.org
          Reporter: marxin at gcc dot gnu.org

Latest GCC produces ICE in:

lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
0xe58435 ipa_comdats
    ../../gcc/ipa-comdats.c:360
0xe585be execute
    ../../gcc/ipa-comdats.c:414

Problematic symbol:
_ZThn8_NK12_GLOBAL__N_116PanelStackWindow9GetWidgetEv/94300622
(_ZThn8_NK12_GLOBAL__N_116PanelStackWindow9GetWidgetEv) @0x7f557e1927a8
  Type: function definition analyzed
  Visibility: prevailing_def_ironly virtual artificial
  References: 
  Referring: 
  Read from file:
obj/chrome/browser/ui/views/panels/browser_ui.panel_stack_view.o
  Availability: available
  First run: 0
  Function flags:
  Thunk fixed offset -8 virtual value 0 has virtual offset 0)
  Called by: 
  Calls: *.LTHUNK22/94300621 (1.00 per call) 

If I see ipa-devirt correctly, this symbol should be probably removed as dead
as it has no calls, am I right? How could I debug if the symbol is considered
to be removed?

Thanks,
Martin


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
@ 2015-02-15 19:18 ` hubicka at gcc dot gnu.org
  2015-02-15 20:00 ` marxin at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-02-15 19:18 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

--- Comment #1 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
Does the following help?
Index: ipa-comdats.c
===================================================================
--- ipa-comdats.c       (revision 220606)
+++ ipa-comdats.c       (working copy)
@@ -328,9 +328,14 @@ ipa_comdats (void)

   FOR_EACH_DEFINED_SYMBOL (symbol)
     {
+      struct cgraph_node *fun;
       symbol->aux = NULL; 
       if (!symbol->get_comdat_group ()
          && !symbol->alias
+         /* Thunks to external functions do not need to be categorized.  */
+         && (!(fun = dyn_cast <cgraph_node *> (symbol))
+             || !fun->thunk.thunk_p
+             || fun->function_symbol ()->definition)
          && symbol->real_symbol_p ())
        {
          tree *val = map.get (symbol);


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
  2015-02-15 19:18 ` [Bug ipa/65059] " hubicka at gcc dot gnu.org
@ 2015-02-15 20:00 ` marxin at gcc dot gnu.org
  2015-02-16  9:43 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2015-02-15 20:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Thank you Honza, patch works for.

Martin
>From gcc-bugs-return-477336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Feb 15 20:34:00 2015
Return-Path: <gcc-bugs-return-477336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30707 invoked by alias); 15 Feb 2015 20:34:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30683 invoked by uid 48); 15 Feb 2015 20:33:57 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65072] Segfault when parsing dectlype in trailing return type
Date: Sun, 15 Feb 2015 20:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on cc cf_gcchost everconfirmed
Message-ID: <bug-65072-4-nJre3sMb5e@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65072-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65072-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-02/txt/msg01669.txt.bz2
Content-length: 3379

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65072

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|Archlinux Kernel 3.16.3,    |
                   |Intel x86_64                |
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-02-15
                 CC|                            |trippels at gcc dot gnu.org
               Host|Archlinux Kernel 3.16.3,    |
                   |Intel x86_64                |
     Ever confirmed|0                           |1

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Attached testcase only crashes with gcc-4.8 and gcc-4.9.
Reduced testcase crashes with all supported versions:

markus@x4 testc % cat main.ii
template <typename> class CMatrix44
{
  struct
  {
    int xx;
  };
  auto operator*(const CMatrix44 m) -> CMatrix44<decltype (m.xx)>;
};
using CMatrix44f = CMatrix44<float>;
void fn1 (const CMatrix44<float>);
CMatrix44f a;

markus@x4 testc % /g++ -c -std=c++11 main.ii
main.ii: In instantiation of ‘class CMatrix44<float>’:
main.ii:12:12:   required from here
main.ii:7:8: internal compiler error: Segmentation fault
   auto operator*(const CMatrix44 m) -> CMatrix44<decltype (m.xx)>;
        ^
0xca24ff crash_signal
        ../../gcc/gcc/toplev.c:383
0x75a4e0 build_class_member_access_expr(tree_node*, tree_node*, tree_node*,
bool, int)
        ../../gcc/gcc/cp/typeck.c:2319
0x75a8d6 build_class_member_access_expr(tree_node*, tree_node*, tree_node*,
bool, int)
        ../../gcc/gcc/cp/typeck.c:2409
0x75b19b finish_class_member_access_expr(tree_node*, tree_node*, bool, int)
        ../../gcc/gcc/cp/typeck.c:2813
0x6713f0 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/gcc/cp/pt.c:15446
0x675276 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/pt.c:12530
0x68bb1a tsubst_template_args
        ../../gcc/gcc/cp/pt.c:10257
0x6833c0 tsubst_aggr_type
        ../../gcc/gcc/cp/pt.c:10454
0x6757db tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/pt.c:11909
0x68a598 tsubst_function_type
        ../../gcc/gcc/cp/pt.c:11614
0x675916 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/pt.c:12357
0x6838de tsubst_decl
        ../../gcc/gcc/cp/pt.c:10845
0x675d36 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/pt.c:11830
0x6a8900 instantiate_class_template_1
        ../../gcc/gcc/cp/pt.c:9374
0x6a8900 instantiate_class_template(tree_node*)
        ../../gcc/gcc/cp/pt.c:9688
0x73f56b complete_type(tree_node*)
        ../../gcc/gcc/cp/typeck.c:146
0x6222b7 start_decl_1(tree_node*, bool)
        ../../gcc/gcc/cp/decl.c:4898
0x641167 start_decl(cp_declarator const*, cp_decl_specifier_seq*, int,
tree_node*, tree_node*, tree_node**)
        ../../gcc/gcc/cp/decl.c:4861
0x72cde5 cp_parser_init_declarator
        ../../gcc/gcc/cp/parser.c:17153
0x72ebbc cp_parser_simple_declaration
        ../../gcc/gcc/cp/parser.c:11592
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-477337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Feb 15 20:55:08 2015
Return-Path: <gcc-bugs-return-477337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17852 invoked by alias); 15 Feb 2015 20:55:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17801 invoked by uid 48); 15 Feb 2015 20:55:04 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/53623] [4.7/4.8 Regression] sign extension is effectively split into two x86-64 instructions
Date: Sun, 15 Feb 2015 20:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 4.7.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-53623-4-0PEi5j51cb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53623-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53623-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-02/txt/msg01670.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?idS623

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW

--- Comment #15 from H.J. Lu <hjl.tools at gmail dot com> ---
A patch for 4.8 branch is posted at

https://gcc.gnu.org/ml/gcc-patches/2015-02/msg00923.html


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
  2015-02-15 19:18 ` [Bug ipa/65059] " hubicka at gcc dot gnu.org
  2015-02-15 20:00 ` marxin at gcc dot gnu.org
@ 2015-02-16  9:43 ` rguenth at gcc dot gnu.org
  2015-02-16 12:29 ` marxin at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-02-16  9:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1
   Target Milestone|---                         |5.0


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2015-02-16  9:43 ` rguenth at gcc dot gnu.org
@ 2015-02-16 12:29 ` marxin at gcc dot gnu.org
  2015-02-16 15:03 ` mpolacek at gcc dot gnu.org
  2015-02-16 15:29 ` marxin at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2015-02-16 12:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Feb 16 12:28:40 2015
New Revision: 220733

URL: https://gcc.gnu.org/viewcvs?rev=220733&root=gcc&view=rev
Log:
Fix PR ipa/65059.

    PR ipa/65059
    * ipa-comdats.c (ipa_comdats): Do not categorize thunks to
    external functions.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-comdats.c
>From gcc-bugs-return-477394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Feb 16 12:36:43 2015
Return-Path: <gcc-bugs-return-477394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28859 invoked by alias); 16 Feb 2015 12:36:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28829 invoked by uid 48); 16 Feb 2015 12:36:39 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/65064] [5 regression] FAIL: gcc.dg/torture/pr60115.c   -O1  (test for excess errors)
Date: Mon, 16 Feb 2015 12:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: WAITING
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-65064-4-DSPOaWbUB0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65064-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65064-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-02/txt/msg01727.txt.bz2
Content-length: 714

https://gcc.gnu.org/bugzilla/show_bug.cgi?ide064

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #10 from H.J. Lu <hjl.tools at gmail dot com> ---
(In reply to Andreas Schwab from comment #9)
> before:
>     2170:       02 38 01 02 00 24       [MII]       addl r39=0,r1
>                         2170: GPREL22   .sdata+0x38
>
> after:
>     2170:       02 38 01 02 00 24       [MII]       addl r39=0,r1
>                         2170: GPREL22   .rodata+0x114

Can you provide a prepossessed Ada source file?


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2015-02-16 12:29 ` marxin at gcc dot gnu.org
@ 2015-02-16 15:03 ` mpolacek at gcc dot gnu.org
  2015-02-16 15:29 ` marxin at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2015-02-16 15:03 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
So fixed?


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

* [Bug ipa/65059] [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360
  2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2015-02-16 15:03 ` mpolacek at gcc dot gnu.org
@ 2015-02-16 15:29 ` marxin at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2015-02-16 15:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65059

Martin Liška <marxin at gcc dot gnu.org> changed:

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

--- Comment #5 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed in 5.0.
>From gcc-bugs-return-477452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Feb 16 15:23:44 2015
Return-Path: <gcc-bugs-return-477452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20058 invoked by alias); 16 Feb 2015 15:23:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19950 invoked by uid 48); 16 Feb 2015 15:23:40 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/48009] Bootstrap failure: c++locale.cc: invalid conversion from 'const char*' to 'char*'
Date: Mon, 16 Feb 2015 15:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-48009-4-CzgMRYfV91@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-48009-4@http.gcc.gnu.org/bugzilla/>
References: <bug-48009-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-02/txt/msg01786.txt.bz2
Content-length: 474

https://gcc.gnu.org/bugzilla/show_bug.cgi?idH009

David Edelsohn <dje at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #13 from David Edelsohn <dje at gcc dot gnu.org> ---
Fixed.


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

end of thread, other threads:[~2015-02-16 15:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-13 21:43 [Bug ipa/65059] New: [5 Regression] Chrome LTO: lto1: internal compiler error: in ipa_comdats, at ipa-comdats.c:360 marxin at gcc dot gnu.org
2015-02-15 19:18 ` [Bug ipa/65059] " hubicka at gcc dot gnu.org
2015-02-15 20:00 ` marxin at gcc dot gnu.org
2015-02-16  9:43 ` rguenth at gcc dot gnu.org
2015-02-16 12:29 ` marxin at gcc dot gnu.org
2015-02-16 15:03 ` mpolacek at gcc dot gnu.org
2015-02-16 15:29 ` marxin 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).