diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-17 18:07:01 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-17 18:07:01 +0000 |
commit | d3371fcdcc3bd30574a2659c8ada4285dafc0afd (patch) | |
tree | ac2f99f989f1e0a7e29071f30fbda71a9b47deb7 /gcc/function.c | |
parent | 9371e4aba42ee62a0ec71ebc45981c3ceb57807c (diff) | |
download | gcc-d3371fcdcc3bd30574a2659c8ada4285dafc0afd.tar.gz |
* final.c: Fix formatting.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53563 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5bd70a0560f..9a944139ab5 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4609,8 +4609,8 @@ assign_parms (fndecl) to indicate there is no preallocated stack slot for the parm. */ if (entry_parm == stack_parm - || (GET_CODE (entry_parm) == PARALLEL - && XEXP (XVECEXP (entry_parm, 0, 0), 0) == NULL_RTX) + || (GET_CODE (entry_parm) == PARALLEL + && XEXP (XVECEXP (entry_parm, 0, 0), 0) == NULL_RTX) #if defined (REG_PARM_STACK_SPACE) && ! defined (MAYBE_REG_PARM_STACK_SPACE) /* On some machines, even if a parm value arrives in a register there is still an (uninitialized) stack slot allocated for it. @@ -5410,8 +5410,8 @@ pad_to_arg_alignment (offset_ptr, boundary, alignment_pad) (ARGS_SIZE_TREE (*offset_ptr), boundary / BITS_PER_UNIT); offset_ptr->constant = 0; /*?*/ - if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY) - alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var, + if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY) + alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var, save_var); } else @@ -5471,7 +5471,7 @@ uninitialized_vars_warning (block) for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl)) { if (warn_uninitialized - && TREE_CODE (decl) == VAR_DECL + && TREE_CODE (decl) == VAR_DECL /* These warnings are unreliable for and aggregates because assigning the fields one by one can fail to convince flow.c that the entire aggregate was initialized. |