summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorams <ams@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-30 15:02:26 +0000
committerams <ams@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-30 15:02:26 +0000
commitb83afca1ed3e3539360c5a1cfcb1672e7511f4cf (patch)
tree30d805b5c206b67fed6c7b6018f4cc7e3d341e40 /gcc/config
parentecafb02c23e577870f3cfe817cdb465fb82a27dc (diff)
downloadgcc-b83afca1ed3e3539360c5a1cfcb1672e7511f4cf.tar.gz
2011-08-30 Andrew Stubbs <ams@codesourcery.com>
gcc/ * config/arm/arm.c (optimal_immediate_sequence_1): Make b1, b2, b3 and b4 unsigned. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178324 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 3a49f40906c..00479692bd2 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -2624,7 +2624,7 @@ optimal_immediate_sequence_1 (enum rtx_code code, unsigned HOST_WIDE_INT val,
do
{
int end;
- int b1, b2, b3, b4;
+ unsigned int b1, b2, b3, b4;
unsigned HOST_WIDE_INT result;
int loc;