public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Committed, obvious reload1.c: Fix g77.f-torture/execute/970625-2.f on mmix-knuth-mmixware
@ 2002-08-13 17:51 Hans-Peter Nilsson
  0 siblings, 0 replies; only message in thread
From: Hans-Peter Nilsson @ 2002-08-13 17:51 UTC (permalink / raw)
  To: gcc-patches

This fixes
FAIL: g77.f-torture/execute/970625-2.f compilation,  -O1
for mmix-knuth-mmixware.  The error message is:
x/gcc/testsuite/g77.f-torture/execute/970625-2.f: In subroutine `functionprogram':
x/gcc/testsuite/g77.f-torture/execute/970625-2.f:74: internal compiler error:
 RTL flag check: REG_FUNCTION_VALUE_P used with unexpected rtx code
 `mem' in reload_cse_simplify, at reload1.c:8047

The fix seems obvious enough, considering that rtl.h says that
REG_FUNCTION_VALUE_P is only valid for REG, and that all other
uses of REG_FUNCTION_VALUE_P in reload1.c first check for REG.

Committed; tested mmix-knuth-mmixware, bootstrapped and checked
i686-pc-linux-gnu, no new regressions.

	* reload1.c (reload_cse_simplify): Before checking
	REG_FUNCTION_VALUE_P, check REG_P.

Index: reload1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/reload1.c,v
retrieving revision 1.351
diff -p -c -r1.351 reload1.c
*** reload1.c	30 Jul 2002 16:42:05 -0000	1.351
--- reload1.c	12 Aug 2002 10:12:09 -0000
*************** reload_cse_simplify (insn, testreg)
*** 8044,8050 ****
  	    {
  	      if (! reload_cse_noop_set_p (part))
  		break;
! 	      if (REG_FUNCTION_VALUE_P (SET_DEST (part)))
  		{
  		  if (value)
  		    break;
--- 8044,8051 ----
  	    {
  	      if (! reload_cse_noop_set_p (part))
  		break;
! 	      if (REG_P (SET_DEST (part))
! 		  && REG_FUNCTION_VALUE_P (SET_DEST (part)))
  		{
  		  if (value)
  		    break;

brgds, H-P

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-08-14  0:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-08-13 17:51 Committed, obvious reload1.c: Fix g77.f-torture/execute/970625-2.f on mmix-knuth-mmixware Hans-Peter Nilsson

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