Commit 361ea006 by Richard Henderson Committed by Richard Henderson

* expr.h (ADD_PARM_SIZE): One more convert for INC.

From-SVN: r51409
parent 1de38a88
2002-03-26 Richard Henderson <rth@redhat.com>
* expr.h (ADD_PARM_SIZE): One more convert for INC.
2002-03-26 Phil Edwards <pme@gcc.gnu.org> 2002-03-26 Phil Edwards <pme@gcc.gnu.org>
* gcc.c (cpp_options): Preserve relative ordering of -pedantic * gcc.c (cpp_options): Preserve relative ordering of -pedantic
...@@ -5,6 +9,7 @@ ...@@ -5,6 +9,7 @@
(cc1_options): Likewise. (cc1_options): Likewise.
2002-03-26 Hans Boehm <Hans_Boehm@hp.com> 2002-03-26 Hans Boehm <Hans_Boehm@hp.com>
* config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR): * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR):
Restore more of the signal context. Set no_reg_stack_frame. Restore more of the signal context. Set no_reg_stack_frame.
* config/ia64/unwind-ia64.c (unw_state_record): * config/ia64/unwind-ia64.c (unw_state_record):
......
...@@ -81,7 +81,7 @@ do { \ ...@@ -81,7 +81,7 @@ do { \
if (host_integerp (inc, 0)) \ if (host_integerp (inc, 0)) \
(TO).constant += tree_low_cst (inc, 0); \ (TO).constant += tree_low_cst (inc, 0); \
else if ((TO).var == 0) \ else if ((TO).var == 0) \
(TO).var = inc; \ (TO).var = convert (ssizetype, inc); \
else \ else \
(TO).var = size_binop (PLUS_EXPR, (TO).var, \ (TO).var = size_binop (PLUS_EXPR, (TO).var, \
convert (ssizetype, inc)); \ convert (ssizetype, inc)); \
......
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