* ginclude/va-ppc.h (va_arg): Fix typo in long long support.

From-SVN: r18346
This commit is contained in:
Jeffrey A Law 1998-03-01 17:11:31 +00:00 committed by Jeff Law
parent 72dd050ade
commit 925b1f338e
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@ Sun Feb 22 16:23:46 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.d
Sun Mar 1 18:06:21 1998 Jeffrey A Law (law@cygnus.com)
* ginclude/va-ppc.h (va_arg): Fix typo in long long support.
* i386.c (reg_mentioned_in_mem): Fix dangling else statement.
* fold-const.c (fold_range_test): Always return a value.

View File

@ -134,7 +134,7 @@ __extension__ (*({ \
else if (!__va_float_p (TYPE) && !__va_aggregate_p (TYPE) \
&& (AP)->gpr + __va_size(TYPE) <= 8 \
&& (!__va_longlong_p(TYPE) \
|| (AP)->gpr + __va_size(TYPE) <= 7)) \
|| (AP)->gpr + __va_size(TYPE) <= 8)) \
{ \
if (__va_longlong_p(TYPE) && ((AP)->gpr & 1) != 0) \
(AP)->gpr++; \