Commit 0c125e91 by Richard Kenner

Add ppc svr4 calling sequence support.

From-SVN: r10213
parent 325eeaca
......@@ -38,6 +38,9 @@
#if defined (__H8300__) || defined (__H8300H__)
#include <va-h8300.h>
#else
#if defined (__PPC__) && defined (_CALL_SYSV)
#include <va-ppc.h>
#else
/* Define __gnuc_va_list. */
......@@ -90,6 +93,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#endif /* big-endian */
#endif /* _STDARG_H */
#endif /* not powerpc with V.4 calling sequence */
#endif /* not h8300 */
#endif /* not alpha */
#endif /* not i960 */
......
......@@ -36,6 +36,9 @@
#if defined (__H8300__) || defined (__H8300H__)
#include <va-h8300.h>
#else
#if defined (__PPC__) && defined (_CALL_SYSV)
#include <va-ppc.h>
#else
#ifdef __NeXT__
......@@ -108,6 +111,7 @@ typedef void *__gnuc_va_list;
? sizeof (TYPE) : __va_rounded_size (TYPE))))))
#endif /* big-endian */
#endif /* not powerpc with V.4 calling sequence */
#endif /* not h8300 */
#endif /* not alpha */
#endif /* not i960 */
......
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