Commit 925b1f33 by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r18346
parent 72dd050a
......@@ -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.
......
......@@ -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++; \
......
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