]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gimple ssa: Fix a typo in gimple-ssa-sccopy.cc
authorFilip Kastl <fkastl@suse.cz>
Mon, 5 Aug 2024 12:39:06 +0000 (14:39 +0200)
committerFilip Kastl <fkastl@suse.cz>
Mon, 5 Aug 2024 12:39:06 +0000 (14:39 +0200)
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>
gcc/gimple-ssa-sccopy.cc

index 138ee9a0ac48fe2846047fce6152f637189189eb..191a4c0b451d9c0c166a1b11058f41dac02a5760 100644 (file)
@@ -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.