Commit e318a72a by Richard Kenner

Call va-alpha.h for Alpha.

From-SVN: r1841
parent 09afda24
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
#ifdef __i960__ #ifdef __i960__
#include "va-i960.h" #include "va-i960.h"
#else #else
#ifdef __alpha__
#include "va-alpha.h"
#else
/* Define __gnuc_va_list. */ /* Define __gnuc_va_list. */
...@@ -64,6 +67,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ ...@@ -64,6 +67,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
*((TYPE *) ((char *) (AP) - __va_rounded_size (TYPE)))) *((TYPE *) ((char *) (AP) - __va_rounded_size (TYPE))))
#endif /* _STDARG_H */ #endif /* _STDARG_H */
#endif /* not alpha */
#endif /* not i960 */ #endif /* not i960 */
#endif /* not sparc */ #endif /* not sparc */
#endif /* not mips */ #endif /* not mips */
......
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
#ifdef __i960__ #ifdef __i960__
#include "va-i960.h" #include "va-i960.h"
#else #else
#ifdef __alpha__
#include "va-alpha.h"
#else
#ifdef __NeXT__ #ifdef __NeXT__
...@@ -98,6 +101,7 @@ typedef char * __va___list; ...@@ -98,6 +101,7 @@ typedef char * __va___list;
(AP += __va_rounded_size (TYPE), \ (AP += __va_rounded_size (TYPE), \
*((TYPE *) (AP - __va_rounded_size (TYPE)))) *((TYPE *) (AP - __va_rounded_size (TYPE))))
#endif /* not alpha */
#endif /* not i960 */ #endif /* not i960 */
#endif /* not hppa */ #endif /* not hppa */
#endif /* not m88k */ #endif /* not m88k */
......
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