diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-03-06 16:59:13 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-03-06 16:59:13 -0800 |
commit | 385512eb870b09b2c7f3a08e33c93684b242a20c (patch) | |
tree | 254c275b6963cc98ce4cba883d9c7fe065a76843 /gcc/ginclude | |
parent | b4b340377307a6a4eb69473947fae238577282bc (diff) | |
download | gcc-385512eb870b09b2c7f3a08e33c93684b242a20c.zip gcc-385512eb870b09b2c7f3a08e33c93684b242a20c.tar.gz gcc-385512eb870b09b2c7f3a08e33c93684b242a20c.tar.bz2 |
Use va-sh.h.
From-SVN: r11485
Diffstat (limited to 'gcc/ginclude')
-rw-r--r-- | gcc/ginclude/stdarg.h | 4 | ||||
-rw-r--r-- | gcc/ginclude/varargs.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 84141dc..8eaa53c 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -41,6 +41,9 @@ #if defined (__PPC__) && defined (_CALL_SYSV) #include <va-ppc.h> #else +#ifdef __sh__ +#include <va-sh.h> +#else /* Define __gnuc_va_list. */ @@ -93,6 +96,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ #endif /* big-endian */ #endif /* _STDARG_H */ +#endif /* not sh */ #endif /* not powerpc with V.4 calling sequence */ #endif /* not h8300 */ #endif /* not alpha */ diff --git a/gcc/ginclude/varargs.h b/gcc/ginclude/varargs.h index 77e0ed2..5e17bec 100644 --- a/gcc/ginclude/varargs.h +++ b/gcc/ginclude/varargs.h @@ -39,6 +39,9 @@ #if defined (__PPC__) && defined (_CALL_SYSV) #include <va-ppc.h> #else +#ifdef __sh__ +#include <va-sh.h> +#else #ifdef __NeXT__ @@ -111,6 +114,7 @@ typedef void *__gnuc_va_list; ? sizeof (TYPE) : __va_rounded_size (TYPE)))))) #endif /* big-endian */ +#endif /* not sh */ #endif /* not powerpc with V.4 calling sequence */ #endif /* not h8300 */ #endif /* not alpha */ |