public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/57559] New: S/390: ICE with lra
@ 2013-06-07 15:07 krebbel at gcc dot gnu.org
  2013-06-10  8:45 ` [Bug rtl-optimization/57559] [4.9 Regression] " rguenth at gcc dot gnu.org
  2013-07-31  8:03 ` krebbel at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: krebbel at gcc dot gnu.org @ 2013-06-07 15:07 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 4060 bytes --]

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

            Bug ID: 57559
           Summary: S/390: ICE with lra
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: krebbel at gcc dot gnu.org

t.c:

typedef int int32_t;
typedef unsigned char uint8_t;
typedef unsigned int uint32_t;
struct _IO_marker
{
};
static const int32_t mfcone = 1;
static const uint8_t *mfctop = (const uint8_t *) &mfcone;
int32_t
decContextTestEndian (uint8_t quiet)
{
  int32_t res = 0;
  uint32_t dle = (uint32_t) 0;
  if (*mfctop != 0)
    {
      res = (int32_t) * mfctop - dle;
    }
  return res;
}

cc1 -fpreprocessed  -quiet -march=z10 -m64 -mzarch  -O1 t.c -o t.s

t.c: In function ‘decContextTestEndian’:
t.c:19:1: internal compiler error: Max. number of generated reload insns per
insn is achieved (90)

 }
 ^
0x806b1637 lra_constraints(bool)
        /home/andreas/clean/gcc-head/gcc/lra-constraints.c:3698
0x80697d8b lra(_IO_FILE*)
        /home/andreas/clean/gcc-head/gcc/lra.c:2278
0x80621aeb do_reload
        /home/andreas/clean/gcc-head/gcc/ira.c:4641
0x80621dfd rest_of_handle_reload
        /home/andreas/clean/gcc-head/gcc/ira.c:4753
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.


The testcase works fine with either -mno-lra or -march=z9-109
>From gcc-bugs-return-423994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Jun 07 15:43:30 2013
Return-Path: <gcc-bugs-return-423994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17184 invoked by alias); 7 Jun 2013 15:43:29 -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 17131 invoked by uid 48); 7 Jun 2013 15:43:21 -0000
From: "vpozdyayev at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/57560] New: Variadic templates, unwarranted warnings
Date: Fri, 07 Jun 2013 15:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: vpozdyayev at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter attachments.created
Message-ID: <bug-57560-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: 2013-06/txt/msg00373.txt.bz2
Content-length: 660

http://gcc.gnu.org/bugzilla/show_bug.cgi?idW560

            Bug ID: 57560
           Summary: Variadic templates, unwarranted warnings
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vpozdyayev at gmail dot com

Created attachment 30276
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id0276&actioníit
test case

Test case: see the attachment. Command line: "g++ test.cpp -Wall -Wextra
-std=c++11". I believe the "parameter set but not used" warning to be
unnecessary here.


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

* [Bug rtl-optimization/57559] [4.9 Regression] S/390: ICE with lra
  2013-06-07 15:07 [Bug rtl-optimization/57559] New: S/390: ICE with lra krebbel at gcc dot gnu.org
@ 2013-06-10  8:45 ` rguenth at gcc dot gnu.org
  2013-07-31  8:03 ` krebbel at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-06-10  8:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.9.0
            Summary|S/390: ICE with lra         |[4.9 Regression] S/390: ICE
                   |                            |with lra


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

* [Bug rtl-optimization/57559] [4.9 Regression] S/390: ICE with lra
  2013-06-07 15:07 [Bug rtl-optimization/57559] New: S/390: ICE with lra krebbel at gcc dot gnu.org
  2013-06-10  8:45 ` [Bug rtl-optimization/57559] [4.9 Regression] " rguenth at gcc dot gnu.org
@ 2013-07-31  8:03 ` krebbel at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: krebbel at gcc dot gnu.org @ 2013-07-31  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

Andreas Krebbel <krebbel at gcc dot gnu.org> changed:

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

--- Comment #1 from Andreas Krebbel <krebbel at gcc dot gnu.org> ---
Cannot be reproduced with r201360 anymore.


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

end of thread, other threads:[~2013-07-31  8:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-07 15:07 [Bug rtl-optimization/57559] New: S/390: ICE with lra krebbel at gcc dot gnu.org
2013-06-10  8:45 ` [Bug rtl-optimization/57559] [4.9 Regression] " rguenth at gcc dot gnu.org
2013-07-31  8:03 ` krebbel 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).