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
This commit is contained in:
Jakub Jelinek 2005-06-30 16:22:41 +02:00 committed by Jakub Jelinek
parent c2f7fa15c0
commit 4e95355358
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* coretypes.h (tls_model): Add TLS_MODEL_NONE as 0.

View File

@ -252,7 +252,9 @@ do { \
/* Size of the V.4 varargs area if needed. */
/* Override rs6000.h definition. */
#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. */
#undef BYTES_BIG_ENDIAN