diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-17 18:07:01 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-17 18:07:01 +0000 |
commit | dd3f0101652432c1da354268600ccde52d834256 (patch) | |
tree | ac2f99f989f1e0a7e29071f30fbda71a9b47deb7 /gcc/function.c | |
parent | 5ca9299f10baafa4f376871390638fd5dcf42cde (diff) | |
download | gcc-dd3f0101652432c1da354268600ccde52d834256.tar.gz |
final.c: Fix formatting.
* final.c: Fix formatting.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
From-SVN: r53563
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. |