public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142
@ 2005-07-10 12:23 pluto at agmk dot net
  2005-07-10 13:26 ` [Bug other/22393] " pluto at agmk dot net
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: pluto at agmk dot net @ 2005-07-10 12:23 UTC (permalink / raw)
  To: gcc-bugs

$ gcc s_ctan.i -c -std=gnu99 -O1 
../sysdeps/generic/s_ctan.c: In function '__ctan': 
../sysdeps/generic/s_ctan.c:69: internal compiler error: in emit_move_insn, at 
expr.c:3142 
 
without -std=gnu99 it works. 
 
(gcc-4.1.0-0.20050707T1814UTC).

-- 
           Summary: ICE in emit_move_insn, at expr.c:3142
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: other
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pluto at agmk dot net
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pld-linux
  GCC host triplet: i686-pld-linux
GCC target triplet: i686-pld-linux


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


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

* [Bug other/22393] ICE in emit_move_insn, at expr.c:3142
  2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
@ 2005-07-10 13:26 ` pluto at agmk dot net
  2005-07-10 18:34 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: pluto at agmk dot net @ 2005-07-10 13:26 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pluto at agmk dot net  2005-07-10 12:22 -------
Created an attachment (id=9238)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9238&action=view)
testcase


-- 


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


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

* [Bug other/22393] ICE in emit_move_insn, at expr.c:3142
  2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
  2005-07-10 13:26 ` [Bug other/22393] " pluto at agmk dot net
@ 2005-07-10 18:34 ` pinskia at gcc dot gnu dot org
  2005-07-11 11:02 ` reichelt at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-10 18:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-10 18:26 -------
I think this was fixed by:
2005-07-08  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/22356
        * tree-complex.c (expand_complex_libcall): Produce
        REALPART_EXPR/IMAGPART_EXPR with the correct type.

Just because I cannot reproduce it with last night's build of gcc.

-- 


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


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

* [Bug other/22393] ICE in emit_move_insn, at expr.c:3142
  2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
  2005-07-10 13:26 ` [Bug other/22393] " pluto at agmk dot net
  2005-07-10 18:34 ` pinskia at gcc dot gnu dot org
@ 2005-07-11 11:02 ` reichelt at gcc dot gnu dot org
  2005-07-11 14:17   ` Andrew Pinski
  2005-07-11 14:18 ` [Bug other/22393] [4.1 regression] " pinskia at physics dot uc dot edu
  2005-07-21 10:12 ` cvs-commit at gcc dot gnu dot org
  4 siblings, 1 reply; 7+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-07-11 11:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-07-11 10:47 -------
Reduced testcase (compile with "gcc -O -std=gnu99"):

================================================
__complex__ double foo (__complex__ double x)
{
    return 1.0 / x * -1.0i;
}
================================================

Andrew, this was really fixed by your patch for PR 22356.

Do you want to add this as a testcase, since the one in PR22356
only triggers with an additional patch of yours?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org, reichelt at gcc dot gnu
                   |                            |dot org
  BugsThisDependsOn|                            |22356
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.1.0


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


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

* Re: [Bug other/22393] ICE in emit_move_insn, at expr.c:3142
  2005-07-11 11:02 ` reichelt at gcc dot gnu dot org
@ 2005-07-11 14:17   ` Andrew Pinski
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Pinski @ 2005-07-11 14:17 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs


On Jul 11, 2005, at 6:47 AM, reichelt at gcc dot gnu dot org wrote:

> Do you want to add this as a testcase, since the one in PR22356
> only triggers with an additional patch of yours?

Yes Please add the testcase as we don't have that many complex tests
in GCC's testsuite.

-- Pinski


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

* [Bug other/22393] [4.1 regression] ICE in emit_move_insn, at expr.c:3142
  2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
                   ` (2 preceding siblings ...)
  2005-07-11 11:02 ` reichelt at gcc dot gnu dot org
@ 2005-07-11 14:18 ` pinskia at physics dot uc dot edu
  2005-07-21 10:12 ` cvs-commit at gcc dot gnu dot org
  4 siblings, 0 replies; 7+ messages in thread
From: pinskia at physics dot uc dot edu @ 2005-07-11 14:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at physics dot uc dot edu  2005-07-11 14:17 -------
Subject: Re:  ICE in emit_move_insn, at expr.c:3142


On Jul 11, 2005, at 6:47 AM, reichelt at gcc dot gnu dot org wrote:

> Do you want to add this as a testcase, since the one in PR22356
> only triggers with an additional patch of yours?

Yes Please add the testcase as we don't have that many complex tests
in GCC's testsuite.

-- Pinski



-- 


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


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

* [Bug other/22393] [4.1 regression] ICE in emit_move_insn, at expr.c:3142
  2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
                   ` (3 preceding siblings ...)
  2005-07-11 14:18 ` [Bug other/22393] [4.1 regression] " pinskia at physics dot uc dot edu
@ 2005-07-21 10:12 ` cvs-commit at gcc dot gnu dot org
  4 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-07-21 10:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-07-21 09:57 -------
Subject: Bug 22393

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	reichelt@gcc.gnu.org	2005-07-21 09:57:05

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.dg: complex-4.c 

Log message:
	PR c/22393
	* gcc.dg/complex-4.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5794&r2=1.5795
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/complex-4.c.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

end of thread, other threads:[~2005-07-21  9:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-10 12:23 [Bug other/22393] New: ICE in emit_move_insn, at expr.c:3142 pluto at agmk dot net
2005-07-10 13:26 ` [Bug other/22393] " pluto at agmk dot net
2005-07-10 18:34 ` pinskia at gcc dot gnu dot org
2005-07-11 11:02 ` reichelt at gcc dot gnu dot org
2005-07-11 14:17   ` Andrew Pinski
2005-07-11 14:18 ` [Bug other/22393] [4.1 regression] " pinskia at physics dot uc dot edu
2005-07-21 10:12 ` cvs-commit 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).