public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
@ 2003-06-14 19:33 alexander.kruppa@stud.tu-muenchen.de
  2003-06-14 19:37 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: alexander.kruppa@stud.tu-muenchen.de @ 2003-06-14 19:33 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3
                    (internal compiler error)
           Product: gcc
           Version: 3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: alexander.kruppa@stud.tu-muenchen.de
                CC: gcc-bugs@gcc.gnu.org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu

Building Pari-2.1.5 (from http://www.gn-50uma.de/ftp/pari/00index.html) fails
when trying to compile src/basemath/buch2.c with -O3 on a SuSE 8.2 system, the
compiler aborts with a "internal compiler error" message.


uname -a
Linux lily 2.4.20-4GB #1 Mon Mar 17 17:54:44 UTC 2003 i686 unknown unknown GNU/Linux

gcc --version
gcc (GCC) 3.3 20030226 (prerelease) (SuSE Linux)

Unfortunately I have no stock gcc 3.3 available to test.


/usr/bin/gcc -c -O3 -Wall -Wno-implicit -fomit-frame-pointer -o buch2.o -x
cpp-output  buch2.i
../src/basemath/buch2.c: In function `small_norm_for_buchall':
../src/basemath/buch2.c:1516: warning: comparison between signed and unsigned
../src/basemath/buch2.c: In function `relationrank':
../src/basemath/buch2.c:2146: warning: comparison between signed and unsigned
../src/basemath/buch2.c: In function `buchall':
../src/basemath/buch2.c:3036: warning: comparison between signed and unsigned
../src/basemath/buch2.c: At top level:
../src/basemath/buch2.c:1782: internal compiler error: in remove_edge, at
callgraph.c:189
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
alex@lily:~/pari-2.1.5/Olinux-i686>


Compiling with -O2 seems to work:

/usr/bin/gcc -c -O2 -Wall -Wno-implicit -fomit-frame-pointer -o buch2.o -x
cpp-output  buch2.i
../src/basemath/buch2.c: In function `small_norm_for_buchall':
../src/basemath/buch2.c:1516: warning: comparison between signed and unsigned
../src/basemath/buch2.c: In function `relationrank':
../src/basemath/buch2.c:2146: warning: comparison between signed and unsigned
../src/basemath/buch2.c: In function `buchall':
../src/basemath/buch2.c:3036: warning: comparison between signed and unsigned
alex@lily:~/pari-2.1.5/Olinux-i686>


I'll attach the "buch2.i" file to this report.

Alex


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

* [Bug optimization/11192] Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
  2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
@ 2003-06-14 19:37 ` alexander.kruppa@stud.tu-muenchen.de
  2003-06-14 19:44 ` pinskia@physics.uc.edu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: alexander.kruppa@stud.tu-muenchen.de @ 2003-06-14 19:37 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From alexander.kruppa@stud.tu-muenchen.de  2003-06-14 19:37 -------
Created an attachment (id=4223)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4223&action=view)
the preprocessed Pari source file


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

* [Bug optimization/11192] Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
  2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
  2003-06-14 19:37 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
@ 2003-06-14 19:44 ` pinskia@physics.uc.edu
  2003-06-14 20:27 ` ebotcazou@libertysurf.fr
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia@physics.uc.edu @ 2003-06-14 19:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia@physics.uc.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


------- Additional Comments From pinskia@physics.uc.edu  2003-06-14 19:44 -------
Can you try a final version of 3.3 since I cannot reproduce it on 3.3.1 (20030526) and the mainline 
(20030614)?


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

* [Bug optimization/11192] Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
  2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
  2003-06-14 19:37 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
  2003-06-14 19:44 ` pinskia@physics.uc.edu
@ 2003-06-14 20:27 ` ebotcazou@libertysurf.fr
  2003-06-14 20:27 ` [Bug optimization/11192] New: " Eric Botcazou
  2003-06-14 20:34 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou@libertysurf.fr @ 2003-06-14 20:27 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From ebotcazou@libertysurf.fr  2003-06-14 20:27 -------
Subject: Re:  New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)

> /usr/bin/gcc -c -O3 -Wall -Wno-implicit -fomit-frame-pointer -o buch2.o -x
> cpp-output  buch2.i
> ../src/basemath/buch2.c: In function `small_norm_for_buchall':
> ../src/basemath/buch2.c:1516: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: In function `relationrank':
> ../src/basemath/buch2.c:2146: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: In function `buchall':
> ../src/basemath/buch2.c:3036: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: At top level:
> ../src/basemath/buch2.c:1782: internal compiler error: in remove_edge, at
> callgraph.c:189
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.

There is no callgraph.c source file in the FSF tree. Ask SuSE directly.


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

* Re: [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
  2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
                   ` (2 preceding siblings ...)
  2003-06-14 20:27 ` ebotcazou@libertysurf.fr
@ 2003-06-14 20:27 ` Eric Botcazou
  2003-06-14 20:34 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
  4 siblings, 0 replies; 6+ messages in thread
From: Eric Botcazou @ 2003-06-14 20:27 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: alexander.kruppa, gcc-bugs

> /usr/bin/gcc -c -O3 -Wall -Wno-implicit -fomit-frame-pointer -o buch2.o -x
> cpp-output  buch2.i
> ../src/basemath/buch2.c: In function `small_norm_for_buchall':
> ../src/basemath/buch2.c:1516: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: In function `relationrank':
> ../src/basemath/buch2.c:2146: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: In function `buchall':
> ../src/basemath/buch2.c:3036: warning: comparison between signed and
> unsigned ../src/basemath/buch2.c: At top level:
> ../src/basemath/buch2.c:1782: internal compiler error: in remove_edge, at
> callgraph.c:189
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.

There is no callgraph.c source file in the FSF tree. Ask SuSE directly.

-- 
Eric Botcazou


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

* [Bug optimization/11192] Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error)
  2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
                   ` (3 preceding siblings ...)
  2003-06-14 20:27 ` [Bug optimization/11192] New: " Eric Botcazou
@ 2003-06-14 20:34 ` alexander.kruppa@stud.tu-muenchen.de
  4 siblings, 0 replies; 6+ messages in thread
From: alexander.kruppa@stud.tu-muenchen.de @ 2003-06-14 20:34 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


alexander.kruppa@stud.tu-muenchen.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |INVALID


------- Additional Comments From alexander.kruppa@stud.tu-muenchen.de  2003-06-14 20:34 -------
Ok, will contact SuSE. This bug closed as INVALID.


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

end of thread, other threads:[~2003-06-14 20:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-14 19:33 [Bug optimization/11192] New: Building Pari-2.1.5 fails with SuSE gcc 3.3 -O3 (internal compiler error) alexander.kruppa@stud.tu-muenchen.de
2003-06-14 19:37 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de
2003-06-14 19:44 ` pinskia@physics.uc.edu
2003-06-14 20:27 ` ebotcazou@libertysurf.fr
2003-06-14 20:27 ` [Bug optimization/11192] New: " Eric Botcazou
2003-06-14 20:34 ` [Bug optimization/11192] " alexander.kruppa@stud.tu-muenchen.de

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).