public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713
       [not found] <20011120084600.4914.daniel.bonniot@inria.fr>
@ 2003-05-25 13:55 ` pinskia@physics.uc.edu
  2003-11-03 18:49 ` aph at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: pinskia@physics.uc.edu @ 2003-05-25 13:55 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=4914


pinskia@physics.uc.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-05-25 13:51:59
               date|                            |





------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713
       [not found] <20011120084600.4914.daniel.bonniot@inria.fr>
  2003-05-25 13:55 ` [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713 pinskia@physics.uc.edu
@ 2003-11-03 18:49 ` aph at gcc dot gnu dot org
  2003-11-06 15:26 ` aph at gcc dot gnu dot org
  2003-12-09 16:46 ` dhazeghi at yahoo dot com
  3 siblings, 0 replies; 4+ messages in thread
From: aph at gcc dot gnu dot org @ 2003-11-03 18:49 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=4914


aph at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |aph at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED


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

* [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713
       [not found] <20011120084600.4914.daniel.bonniot@inria.fr>
  2003-05-25 13:55 ` [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713 pinskia@physics.uc.edu
  2003-11-03 18:49 ` aph at gcc dot gnu dot org
@ 2003-11-06 15:26 ` aph at gcc dot gnu dot org
  2003-12-09 16:46 ` dhazeghi at yahoo dot com
  3 siblings, 0 replies; 4+ messages in thread
From: aph at gcc dot gnu dot org @ 2003-11-06 15:26 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=4914


aph at gcc dot gnu dot org changed:

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


------- Additional Comments From aph at gcc dot gnu dot org  2003-11-06 15:26 -------
From: Andrew Haley <aph@redhat.com>
To: gcc-patches@gcc.gnu.org
CC: java-patches@gcc.gnu.org
Subject: java/4914: Internal compiler error in emit_move_insn, at expr.c:2713
Date: Thu, 6 Nov 2003 11:37:09 +0000

2003-11-06  Andrew Haley  <aph@redhat.com>

	* expr.c (java_stack_swap): Make sure destination stack slots are
	of the correct type.

Index: expr.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/expr.c,v
retrieving revision 1.177
diff -u -r1.177 expr.c
--- expr.c	22 Oct 2003 18:00:05 -0000	1.177
+++ expr.c	6 Nov 2003 11:30:03 -0000
@@ -503,8 +503,9 @@
   decl1 = find_stack_slot (stack_pointer - 1, type1);
   decl2 = find_stack_slot (stack_pointer - 2, type2);
   temp = copy_to_reg (DECL_RTL (decl1));
-  emit_move_insn (DECL_RTL (decl1), DECL_RTL (decl2));
-  emit_move_insn (DECL_RTL (decl2), temp);
+  emit_move_insn (DECL_RTL (find_stack_slot (stack_pointer - 1, type2)), 
+		  DECL_RTL (decl2));
+  emit_move_insn (DECL_RTL (find_stack_slot (stack_pointer - 2, type1)), temp);
   stack_type_map[stack_pointer - 1] = type2;
   stack_type_map[stack_pointer - 2] = type1;
 }


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

* [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713
       [not found] <20011120084600.4914.daniel.bonniot@inria.fr>
                   ` (2 preceding siblings ...)
  2003-11-06 15:26 ` aph at gcc dot gnu dot org
@ 2003-12-09 16:46 ` dhazeghi at yahoo dot com
  3 siblings, 0 replies; 4+ messages in thread
From: dhazeghi at yahoo dot com @ 2003-12-09 16:46 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
   Target Milestone|---                         |3.4


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


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

end of thread, other threads:[~2003-12-09 16:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20011120084600.4914.daniel.bonniot@inria.fr>
2003-05-25 13:55 ` [Bug java/4914] Internal compiler error in emit_move_insn, at expr.c:2713 pinskia@physics.uc.edu
2003-11-03 18:49 ` aph at gcc dot gnu dot org
2003-11-06 15:26 ` aph at gcc dot gnu dot org
2003-12-09 16:46 ` dhazeghi at yahoo 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).