Commit 430fff02 by Kazu Hirata Committed by Kazu Hirata

system.h (STRUCT_VALUE_INCOMING_REGNUM): Poison.

	* system.h (STRUCT_VALUE_INCOMING_REGNUM): Poison.
	* targhooks.c (default_struct_value_rtx): Don't use
	STRUCT_VALUE_INCOMING_REGNUM.

From-SVN: r75905
parent 03787dfd
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
* system.h (STRUCT_VALUE_INCOMING_REGNUM): Poison.
* targhooks.c (default_struct_value_rtx): Don't use
STRUCT_VALUE_INCOMING_REGNUM.
2004-01-15 Kelley Cook <kcook@gcc.gnu.org> 2004-01-15 Kelley Cook <kcook@gcc.gnu.org>
PR bootstrap/12744 PR bootstrap/12744
......
...@@ -595,7 +595,7 @@ typedef char _Bool; ...@@ -595,7 +595,7 @@ typedef char _Bool;
INIT_GOFAST_OPTABS MULSI3_LIBCALL MULDI3_LIBCALL DIVSI3_LIBCALL \ INIT_GOFAST_OPTABS MULSI3_LIBCALL MULDI3_LIBCALL DIVSI3_LIBCALL \
DIVDI3_LIBCALL UDIVSI3_LIBCALL UDIVDI3_LIBCALL MODSI3_LIBCALL \ DIVDI3_LIBCALL UDIVSI3_LIBCALL UDIVDI3_LIBCALL MODSI3_LIBCALL \
MODDI3_LIBCALL UMODSI3_LIBCALL UMODDI3_LIBCALL BUILD_VA_LIST_TYPE \ MODDI3_LIBCALL UMODSI3_LIBCALL UMODDI3_LIBCALL BUILD_VA_LIST_TYPE \
PRETEND_OUTGOING_VARARGS_NAMED PRETEND_OUTGOING_VARARGS_NAMED STRUCT_VALUE_INCOMING_REGNUM
/* Other obsolete target macros, or macros that used to be in target /* Other obsolete target macros, or macros that used to be in target
headers and were not used, and may be obsolete or may never have headers and were not used, and may be obsolete or may never have
......
...@@ -108,9 +108,6 @@ default_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED, int incoming) ...@@ -108,9 +108,6 @@ default_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED, int incoming)
#ifdef STRUCT_VALUE_INCOMING #ifdef STRUCT_VALUE_INCOMING
rv = STRUCT_VALUE_INCOMING; rv = STRUCT_VALUE_INCOMING;
#else #else
#ifdef STRUCT_VALUE_INCOMING_REGNUM
rv = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
#else
#ifdef STRUCT_VALUE #ifdef STRUCT_VALUE
rv = STRUCT_VALUE; rv = STRUCT_VALUE;
#else #else
...@@ -121,7 +118,6 @@ default_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED, int incoming) ...@@ -121,7 +118,6 @@ default_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED, int incoming)
#endif #endif
#endif #endif
#endif #endif
#endif
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment