Commit 4f649bc1 by Kazu Hirata Committed by Kazu Hirata

* combine.c (nonzero_bits1): Fix a warning.

From-SVN: r68983
parent eb9a4231
2003-07-03 Kazu Hirata <kazu@cs.umass.edu> 2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
* combine.c (nonzero_bits1): Fix a warning.
2003-07-05 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (compute_mov_length): Correct the * config/h8300/h8300.c (compute_mov_length): Correct the
length of loading CONST0_RTX (SFmode). length of loading CONST0_RTX (SFmode).
......
...@@ -8226,7 +8226,8 @@ nonzero_bits1 (rtx x, enum machine_mode mode, rtx known_x, ...@@ -8226,7 +8226,8 @@ nonzero_bits1 (rtx x, enum machine_mode mode, rtx known_x,
stack to be momentarily aligned only to that amount, stack to be momentarily aligned only to that amount,
so we pick the least alignment. */ so we pick the least alignment. */
if (x == stack_pointer_rtx && PUSH_ARGS) if (x == stack_pointer_rtx && PUSH_ARGS)
alignment = MIN (PUSH_ROUNDING (1), alignment); alignment = MIN ((unsigned HOST_WIDE_INT) PUSH_ROUNDING (1),
alignment);
#endif #endif
nonzero &= ~(alignment - 1); nonzero &= ~(alignment - 1);
......
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