Commit 5de35240 by Andrew Stubbs Committed by Andrew Stubbs

arm.c (optimal_immediate_sequence_1): Make b1, b2, b3 and b4 unsigned.

2011-08-30  Andrew Stubbs  <ams@codesourcery.com>

	gcc/
	* config/arm/arm.c (optimal_immediate_sequence_1): Make b1, b2,
	b3 and b4 unsigned.

From-SVN: r178324
parent 71c4391e
2011-08-30 Andrew Stubbs <ams@codesourcery.com> 2011-08-30 Andrew Stubbs <ams@codesourcery.com>
* config/arm/arm.c (optimal_immediate_sequence_1): Make b1, b2,
b3 and b4 unsigned.
2011-08-30 Andrew Stubbs <ams@codesourcery.com>
* config/arm/arm.c (arm_gen_constant): Set can_negate correctly * config/arm/arm.c (arm_gen_constant): Set can_negate correctly
when code is SET. when code is SET.
...@@ -2624,7 +2624,7 @@ optimal_immediate_sequence_1 (enum rtx_code code, unsigned HOST_WIDE_INT val, ...@@ -2624,7 +2624,7 @@ optimal_immediate_sequence_1 (enum rtx_code code, unsigned HOST_WIDE_INT val,
do do
{ {
int end; int end;
int b1, b2, b3, b4; unsigned int b1, b2, b3, b4;
unsigned HOST_WIDE_INT result; unsigned HOST_WIDE_INT result;
int loc; int loc;
......
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