Commit 6bfd0c63 by David S. Miller Committed by David S. Miller

sparc.h (FUNCTION_OK_FOR_SIBCALL): Add back check for DECL being NULL.

2002-04-25  David S. Miller  <davem@redhat.com>

	* config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Add back check
	for DECL being NULL.

From-SVN: r52776
parent 7a430e3b
2002-04-25 David S. Miller <davem@redhat.com>
* config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Add back check
for DECL being NULL.
2002-04-25 Steve Christiansen <smc@us.ibm.com> 2002-04-25 Steve Christiansen <smc@us.ibm.com>
* doc/md.texi (Machine Constraints): Add IA-64 constraints. * doc/md.texi (Machine Constraints): Add IA-64 constraints.
......
...@@ -1918,7 +1918,9 @@ do { \ ...@@ -1918,7 +1918,9 @@ do { \
void) and then nothing else happens. Such a sibling call would look void) and then nothing else happens. Such a sibling call would look
valid without the added check here. */ valid without the added check here. */
#define FUNCTION_OK_FOR_SIBCALL(DECL) \ #define FUNCTION_OK_FOR_SIBCALL(DECL) \
(! TARGET_FLAT && (TARGET_ARCH64 || ! current_function_returns_struct)) (DECL \
&& ! TARGET_FLAT \
&& (TARGET_ARCH64 || ! current_function_returns_struct))
/* Generate RTL to flush the register windows so as to make arbitrary frames /* Generate RTL to flush the register windows so as to make arbitrary frames
available. */ available. */
......
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