From a9748dff0276f653b6ad6af334ff91a0602aceb6 Mon Sep 17 00:00:00 2001 From: Morgan Phillips Date: Thu, 28 Jul 2016 17:51:50 -0700 Subject: [PATCH] Remove innacurate comments. --- src/libcretonne/cfg.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libcretonne/cfg.rs b/src/libcretonne/cfg.rs index f9df5e2997..ff45b59ae8 100644 --- a/src/libcretonne/cfg.rs +++ b/src/libcretonne/cfg.rs @@ -140,8 +140,6 @@ impl ControlFlowGraph { } } } else if !black.contains(&node) { - // This is a gray node, now becoming black. - // We don’t need to mark it since we won’t see it again. postorder.push(node.clone()); black.insert(node.clone()); }