diff options
author | Richard Henderson <rth@redhat.com> | 2004-07-26 10:51:21 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-07-26 10:51:21 -0700 |
commit | 95899b34957e97c03851efb4d482f3efe53a68f9 (patch) | |
tree | b2e42d89a129ea0ff3aed66930e42e06d38d76b2 /gcc/function.h | |
parent | 86df8c86f3388f75c029e307f12a138ab89daa77 (diff) | |
download | gcc-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.h')
-rw-r--r-- | gcc/function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.h b/gcc/function.h index 8b25793..60baf84 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -304,9 +304,9 @@ struct function GTY(()) /* tm.h can use this to store whatever it likes. */ struct machine_function * GTY ((maybe_undef)) machine; /* The largest alignment of slot allocated on the stack. */ - int stack_alignment_needed; + unsigned int stack_alignment_needed; /* Preferred alignment of the end of stack frame. */ - int preferred_stack_boundary; + unsigned int preferred_stack_boundary; /* Set when the call to function itself has been emit. */ bool recursive_call_emit; /* Set when the tail call has been produced. */ |