aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-07-26 10:51:21 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-07-26 10:51:21 -0700
commit95899b34957e97c03851efb4d482f3efe53a68f9 (patch)
treeb2e42d89a129ea0ff3aed66930e42e06d38d76b2 /gcc/function.c
parent86df8c86f3388f75c029e307f12a138ab89daa77 (diff)
downloadgcc-95899b34957e97c03851efb4d482f3efe53a68f9.zip
gcc-95899b34957e97c03851efb4d482f3efe53a68f9.tar.gz
gcc-95899b34957e97c03851efb4d482f3efe53a68f9.tar.bz2
calls.c (combine_pending_stack_adjustment_and_call): Make preferred_unit_stack_boundary argument unsigned.
* calls.c (combine_pending_stack_adjustment_and_call): Make preferred_unit_stack_boundary argument unsigned. Make unadjusted_alignment unsigned. (expand_call): Make preferred_stack_boundary and preferred_unit_stack_boundary variables unsigned. * function.c (assign_stack_local_1): Make alignment unsigned. * function.h (struct function): Make stack_alignment_needed, preferred_stack_boundary unsigned. * config/i386/i386.c (ix86_preferred_stack_boundary): Make unsigned. (ix86_compute_frame_layout): Make stack_alignment_needed, preferred_alignment variables unsigned. * config/i386/i386.h (ix86_preferred_stack_boundary): Make unsigned. From-SVN: r85196
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 20c5c5c..2d4ace5 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -395,7 +395,7 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, int align,
{
rtx x, addr;
int bigend_correction = 0;
- int alignment;
+ unsigned int alignment;
int frame_off, frame_alignment, frame_phase;
if (align == 0)