diff options
author | Joel Hutton <Joel.Hutton@arm.com> | 2019-10-14 21:09:45 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2019-10-14 15:09:45 -0600 |
commit | 128ec9d5505429297231540d48ea2b2ac2a3f89b (patch) | |
tree | 9f59cdc305afcba96ec6cd6c5e6105438271ae89 /gcc | |
parent | 4236e880ee7902f789f8b99e21faea33ecb8a6dd (diff) | |
download | gcc-128ec9d5505429297231540d48ea2b2ac2a3f89b.zip gcc-128ec9d5505429297231540d48ea2b2ac2a3f89b.tar.gz gcc-128ec9d5505429297231540d48ea2b2ac2a3f89b.tar.bz2 |
* doc/tree-ssa.texi: Update renamed macro name.
From-SVN: r276970
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/tree-ssa.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 516e9c1..b58f60c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-10-14 Joel Hutton <Joel.Hutton@arm.com> + + * doc/tree-ssa.texi: Update renamed macro name. + 2019-10-14 Mihailo Stojanovic <mistojanovic@wavecomp.com> * config/mips/mips.c (mips_cannot_force_const_mem): Reject diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi index 9714c5a..a7da6f9 100644 --- a/gcc/doc/tree-ssa.texi +++ b/gcc/doc/tree-ssa.texi @@ -385,14 +385,14 @@ optimization can manipulate the stmt when all the uses have been processed. This is a little slower than the FAST version since it adds a placeholder element and must sort through the list a bit for each statement. This placeholder element must be also be removed if the loop is -terminated early. The macro @code{BREAK_FROM_IMM_USE_SAFE} is provided +terminated early. The macro @code{BREAK_FROM_IMM_USE_STMT} is provided to do this : @smallexample FOR_EACH_IMM_USE_STMT (stmt, iterator, ssa_var) @{ if (stmt == last_stmt) - BREAK_FROM_SAFE_IMM_USE (iter); + BREAK_FROM_IMM_USE_STMT (iter); FOR_EACH_IMM_USE_ON_STMT (imm_use_p, iterator) SET_USE (imm_use_p, ssa_var_2); |