public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2
@ 2004-10-30 21:00 michalkr10 at poczta dot onet dot pl
  2004-10-30 21:02 ` [Bug target/18235] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: michalkr10 at poczta dot onet dot pl @ 2004-10-30 21:00 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1429 bytes --]

i tryed to compile 
crypto-5.2.1.tar.bz2
i've gcc 3.4.1
there is internal compiler error


g++ -pipe -Os -msse -mmmx  -march=pentium3 -g -msse2 -pipe -c integer.cpp
integer.cpp: In static member function `static void CryptoPP::P4Optimized::
Multiply4(CryptoPP::word*, const CryptoPP::word*, const CryptoPP::word*)':
integer.cpp:1704: error: insn does not satisfy its constraints:
(insn 794 793 628 0 /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/include/mmintrin.
h:281 (set (reg/v:V2SI 21 xmm0 [orig:193 <anonymous> ] [193])
        (mem:V2SI (plus:SI (reg/f:SI 6 bp)
                (const_int -132 [0xffffff7c])) [0 S8 A8])) 499 {movv2si_internal} 
(nil)
    (nil))
integer.cpp:1704: internal compiler error: in reload_cse_simplify_operands, at 
postreload.c:378
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:https://qa.mandrakesoft.com/> for instructions.
make: *** [integer.o] B³±d 1

-- 
           Summary: gcc 3.4.1 and there is internal compiler error when
                    tryed compile crypto-5.2.1.tar.bz2
           Product: gcc
           Version: 3.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: michalkr10 at poczta dot onet dot pl
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug target/18235] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2
  2004-10-30 21:00 [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2 michalkr10 at poczta dot onet dot pl
@ 2004-10-30 21:02 ` pinskia at gcc dot gnu dot org
  2004-10-30 21:18 ` giovannibajo at libero dot it
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-30 21:02 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |target


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


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

* [Bug target/18235] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2
  2004-10-30 21:00 [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2 michalkr10 at poczta dot onet dot pl
  2004-10-30 21:02 ` [Bug target/18235] " pinskia at gcc dot gnu dot org
@ 2004-10-30 21:18 ` giovannibajo at libero dot it
  2004-10-30 21:41 ` [Bug target/18235] [3.3/3.4 Regression] " belyshev at lubercy dot com
  2004-10-30 21:51 ` belyshev at lubercy dot com
  3 siblings, 0 replies; 5+ messages in thread
From: giovannibajo at libero dot it @ 2004-10-30 21:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From giovannibajo at libero dot it  2004-10-30 21:18 -------
Please, provide a preprocessed source code attacching it to Bugzilla, as 
explained in: http://gcc.gnu.org/bugs.html.


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


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


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

* [Bug target/18235] [3.3/3.4 Regression]  gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2
  2004-10-30 21:00 [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2 michalkr10 at poczta dot onet dot pl
  2004-10-30 21:02 ` [Bug target/18235] " pinskia at gcc dot gnu dot org
  2004-10-30 21:18 ` giovannibajo at libero dot it
@ 2004-10-30 21:41 ` belyshev at lubercy dot com
  2004-10-30 21:51 ` belyshev at lubercy dot com
  3 siblings, 0 replies; 5+ messages in thread
From: belyshev at lubercy dot com @ 2004-10-30 21:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From belyshev at lubercy dot com  2004-10-30 21:41 -------
use '-Os -msse2' for this small testcase:
----------------------------------------------------------------------------------------
typedef int m64 __attribute__ ((mode (V2SI)));

static inline int bar (m64 i)
{
  long long t = (long long) i;
  return t;
}

void foo (int *C)
{
  m64 s1;
  C[0] = bar (s1);
}
----------------------------------------------------------------------------------------

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
     Ever Confirmed|                            |1
 GCC target triplet|                            |i*86-*-* sse2
      Known to fail|                            |3.3.4 3.4.3 3.4.2 3.4.1
   Last reconfirmed|0000-00-00 00:00:00         |2004-10-30 21:41:51
               date|                            |
            Summary|gcc 3.4.1 and there is      |[3.3/3.4 Regression]  gcc
                   |internal compiler error when|3.4.1 and there is internal
                   |tryed compile crypto-       |compiler error when tryed
                   |5.2.1.tar.bz2               |compile crypto-5.2.1.tar.bz2
   Target Milestone|---                         |3.4.4


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


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

* [Bug target/18235] [3.3/3.4 Regression]  gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2
  2004-10-30 21:00 [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2 michalkr10 at poczta dot onet dot pl
                   ` (2 preceding siblings ...)
  2004-10-30 21:41 ` [Bug target/18235] [3.3/3.4 Regression] " belyshev at lubercy dot com
@ 2004-10-30 21:51 ` belyshev at lubercy dot com
  3 siblings, 0 replies; 5+ messages in thread
From: belyshev at lubercy dot com @ 2004-10-30 21:51 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From belyshev at lubercy dot com  2004-10-30 21:51 -------


*** This bug has been marked as a duplicate of 16104 ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE


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


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

end of thread, other threads:[~2004-10-30 21:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-30 21:00 [Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2 michalkr10 at poczta dot onet dot pl
2004-10-30 21:02 ` [Bug target/18235] " pinskia at gcc dot gnu dot org
2004-10-30 21:18 ` giovannibajo at libero dot it
2004-10-30 21:41 ` [Bug target/18235] [3.3/3.4 Regression] " belyshev at lubercy dot com
2004-10-30 21:51 ` belyshev at lubercy dot com

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