diff options
author | Filip Kastl <fkastl@suse.cz> | 2024-08-05 14:39:06 +0200 |
---|---|---|
committer | Filip Kastl <fkastl@suse.cz> | 2024-08-05 14:39:06 +0200 |
commit | bb30fdd3436987aee6a22610e1d22b091c7ded6e (patch) | |
tree | 052877e72b61242fda036194928476e9b1f938d4 /gcc | |
parent | 219b09215f530e4a4a3763746986b7068e00f000 (diff) | |
download | gcc-bb30fdd3436987aee6a22610e1d22b091c7ded6e.zip gcc-bb30fdd3436987aee6a22610e1d22b091c7ded6e.tar.gz gcc-bb30fdd3436987aee6a22610e1d22b091c7ded6e.tar.bz2 |
gimple ssa: Fix a typo in gimple-ssa-sccopy.cc
Fixes a misplaced comment in gimple-ssa-sccopy.cc. The comment belongs
to a bitmap definition but was instead placed before the beginning of a
namespace block.
gcc/ChangeLog:
* gimple-ssa-sccopy.cc: Move a misplaced comment.
Signed-off-by: Filip Kastl <fkastl@suse.cz>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gimple-ssa-sccopy.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/gimple-ssa-sccopy.cc b/gcc/gimple-ssa-sccopy.cc index 138ee9a..191a4c0 100644 --- a/gcc/gimple-ssa-sccopy.cc +++ b/gcc/gimple-ssa-sccopy.cc @@ -92,10 +92,11 @@ along with GCC; see the file COPYING3. If not see Braun, Buchwald, Hack, Leissa, Mallon, Zwinkau, 2013, LNCS vol. 7791, Section 3.2. */ +namespace { + /* Bitmap tracking statements which were propagated to be removed at the end of the pass. */ -namespace { static bitmap dead_stmts; /* State of vertex during SCC discovery. |