From: Michael Meissner Date: Mon, 10 May 1993 15:51:47 +0000 (+0000) Subject: Use __alignof__ instead of __alignof. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03fbfefce4161188a7158f6b11b4740d1ba68cc9;p=gcc.git Use __alignof__ instead of __alignof. From-SVN: r4408 --- diff --git a/gcc/ginclude/va-mips.h b/gcc/ginclude/va-mips.h index 3345abfcf40..ce96411854d 100644 --- a/gcc/ginclude/va-mips.h +++ b/gcc/ginclude/va-mips.h @@ -54,7 +54,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ /* We cast to void * and then to TYPE * because this avoids a warning about increasing the alignment requirement. */ #define va_arg(__AP, __type) \ - ((__type *) (void *) (__AP = (char *) ((__alignof(__type) > 4 \ + ((__type *) (void *) (__AP = (char *) ((__alignof__(__type) > 4 \ ? ((int)__AP + 8 - 1) & -8 \ : ((int)__AP + 4 - 1) & -4) \ + __va_rounded_size(__type))))[-1]