diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-09 17:52:20 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-09 17:52:20 +0000 |
commit | 0a227ed5edeaf150b5ae49ffabc8f9583f6c301a (patch) | |
tree | 6ca937bbe1996a99e17b469a90f86c5b560f1d05 /gcc/tree-ssa-operands.h | |
parent | 59312820e49658a8bf1f74d96fc59c14f6a8c564 (diff) | |
download | gcc-0a227ed5edeaf150b5ae49ffabc8f9583f6c301a.tar.gz |
* calls.c (purge_reg_equiv_notes): Remove, fold into...
(fixup_tail_calls): ...here. Only look at insns between the
start of the function and the FUNCTION_BEG insn note.
* gcse.c (one_cprop_pass): Fix typos in dumps.
* tree-ssa-operands.h (FOR_EACH_PHI_ARG): Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99461 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-operands.h')
-rw-r--r-- | gcc/tree-ssa-operands.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tree-ssa-operands.h b/gcc/tree-ssa-operands.h index 12f75ceec06..323ac3ffe5d 100644 --- a/gcc/tree-ssa-operands.h +++ b/gcc/tree-ssa-operands.h @@ -270,7 +270,7 @@ typedef struct ssa_operand_iterator_d /* This macro will execute a loop over all the arguments of a PHI which match FLAGS. A use_operand_p is always returned via USEVAR. FLAGS can be either SSA_OP_USE or SSA_OP_VIRTUAL_USES or SSA_OP_ALL_USES. */ -#define FOR_EACH_PHI_ARG (USEVAR, STMT, ITER, FLAGS) \ +#define FOR_EACH_PHI_ARG(USEVAR, STMT, ITER, FLAGS) \ for ((USEVAR) = op_iter_init_phiuse (&(ITER), STMT, FLAGS); \ !op_iter_done (&(ITER)); \ (USEVAR) = op_iter_next_use (&(ITER))) @@ -311,7 +311,8 @@ typedef struct ssa_operand_iterator_d FLAGS, then NULL_DEF_OPERAND_P is returned. */ #define SINGLE_SSA_DEF_OPERAND(STMT, FLAGS) \ single_ssa_def_operand (STMT, FLAGS) - /* This macro returns TRUE if there are no operands matching FLAGS in STMT. */ + +/* This macro returns TRUE if there are no operands matching FLAGS in STMT. */ #define ZERO_SSA_OPERANDS(STMT, FLAGS) zero_ssa_operands (STMT, FLAGS) /* This macro counts the number of operands in STMT matching FLAGS. */ |