Commit 4e953553 by Jakub Jelinek Committed by Jakub Jelinek

sysv4.h (RS6000_VARARGS_AREA): Only return non-zero if DEFAULT_ABI == ABI_V4.

	* config/rs6000/sysv4.h (RS6000_VARARGS_AREA): Only return non-zero
	if DEFAULT_ABI == ABI_V4.

From-SVN: r101466
parent c2f7fa15
2005-06-30 Jakub Jelinek <jakub@redhat.com>
* config/rs6000/sysv4.h (RS6000_VARARGS_AREA): Only return non-zero
if DEFAULT_ABI == ABI_V4.
2005-06-30 Steven Bosscher <stevenb@suse.de> 2005-06-30 Steven Bosscher <stevenb@suse.de>
* coretypes.h (tls_model): Add TLS_MODEL_NONE as 0. * coretypes.h (tls_model): Add TLS_MODEL_NONE as 0.
......
...@@ -252,7 +252,9 @@ do { \ ...@@ -252,7 +252,9 @@ do { \
/* Size of the V.4 varargs area if needed. */ /* Size of the V.4 varargs area if needed. */
/* Override rs6000.h definition. */ /* Override rs6000.h definition. */
#undef RS6000_VARARGS_AREA #undef RS6000_VARARGS_AREA
#define RS6000_VARARGS_AREA (current_function_stdarg ? RS6000_VARARGS_SIZE : 0) #define RS6000_VARARGS_AREA \
((DEFAULT_ABI == ABI_V4 && current_function_stdarg) \
? RS6000_VARARGS_SIZE : 0)
/* Override default big endianism definitions in rs6000.h. */ /* Override default big endianism definitions in rs6000.h. */
#undef BYTES_BIG_ENDIAN #undef BYTES_BIG_ENDIAN
......
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