summaryrefslogtreecommitdiff
path: root/gcc/calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/calls.c')
-rw-r--r--gcc/calls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c
index 903ddc17fe9..abe3012a789 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -4542,7 +4542,7 @@ store_one_arg (arg, argblock, flags, variable_size, reg_parm_stack_space)
parm_align = BITS_PER_UNIT;
else if (excess)
{
- int excess_align = (excess & -excess) * BITS_PER_UNIT;
+ unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
parm_align = MIN (parm_align, excess_align);
}
}