diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2013-12-18 17:32:07 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2013-12-18 17:32:07 +0000 |
commit | 50e6a1482b76a0a06aabf4587bf97da846ff2578 (patch) | |
tree | a9e25f7e11eba3819c7aaf8152c23753b9b82edc /gcc/ssa-iterators.h | |
parent | 90be6e465c82f68e872ed9f5ea2388f709fee359 (diff) | |
download | gcc-50e6a1482b76a0a06aabf4587bf97da846ff2578.zip gcc-50e6a1482b76a0a06aabf4587bf97da846ff2578.tar.gz gcc-50e6a1482b76a0a06aabf4587bf97da846ff2578.tar.bz2 |
tree-ssa.texi (SSA Operands): Remove reference to SSA_OP_VMAYUSE.
* doc/tree-ssa.texi (SSA Operands): Remove reference to
SSA_OP_VMAYUSE.
Synchronize SSA_OP* definitions with source.
* ssa-iterators.h: Fix comment for FOR_EACH_IMM_USE_STMT.
Add not to SSA_OP* macro definitions.
From-SVN: r206091
Diffstat (limited to 'gcc/ssa-iterators.h')
-rw-r--r-- | gcc/ssa-iterators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ssa-iterators.h b/gcc/ssa-iterators.h index eceddbc..7b13928 100644 --- a/gcc/ssa-iterators.h +++ b/gcc/ssa-iterators.h @@ -98,7 +98,7 @@ struct imm_use_iterator get access to each occurrence of ssavar on the stmt returned by that iterator.. for instance: - FOR_EACH_IMM_USE_STMT (stmt, iter, var) + FOR_EACH_IMM_USE_STMT (stmt, iter, ssavar) { FOR_EACH_IMM_USE_ON_STMT (use_p, iter) { @@ -142,13 +142,13 @@ struct ssa_op_iter gimple stmt; }; +/* NOTE: Keep these in sync with doc/tree-ssa.texi. */ /* These flags are used to determine which operands are returned during execution of the loop. */ #define SSA_OP_USE 0x01 /* Real USE operands. */ #define SSA_OP_DEF 0x02 /* Real DEF operands. */ #define SSA_OP_VUSE 0x04 /* VUSE operands. */ #define SSA_OP_VDEF 0x08 /* VDEF operands. */ - /* These are commonly grouped operand flags. */ #define SSA_OP_VIRTUAL_USES (SSA_OP_VUSE) #define SSA_OP_VIRTUAL_DEFS (SSA_OP_VDEF) |