diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2002-10-21 20:24:57 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2002-10-21 20:24:57 +0000 |
commit | 97d05bfdd2480b13c36ea215b45030168c613b04 (patch) | |
tree | 0ed8c8a532e5ab6d57554e6870c2e75b3661617f /gcc/calls.c | |
parent | aaee784acf0a3a5817e35b70ba930c625ce8057e (diff) | |
download | gcc-97d05bfdd2480b13c36ea215b45030168c613b04.zip gcc-97d05bfdd2480b13c36ea215b45030168c613b04.tar.gz gcc-97d05bfdd2480b13c36ea215b45030168c613b04.tar.bz2 |
c-opts.c (missing_arg): Use cl_options[opt_index].opt_code instead of just opt_index as switch expression.
* c-opts.c (missing_arg): Use cl_options[opt_index].opt_code
instead of just opt_index as switch expression.
* calls.c (store_one_arg): Change type of 'excess_align'
to unsigned int.
* profile.c (output_gcov_string): Change type of 'temp'
to size_t.
From-SVN: r58381
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 903ddc1..abe3012 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); } } |