From 587f37ec6cfa1297824c621c2724fca3c943b192 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 2 Aug 2017 11:19:16 -0700 Subject: [PATCH] Don't use documentation-style comments inside a function body. (#131) --- lib/cretonne/src/regalloc/coalescing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cretonne/src/regalloc/coalescing.rs b/lib/cretonne/src/regalloc/coalescing.rs index 964644fad3..29051bf426 100644 --- a/lib/cretonne/src/regalloc/coalescing.rs +++ b/lib/cretonne/src/regalloc/coalescing.rs @@ -383,8 +383,8 @@ impl<'a> Context<'a> { succ_val: Value, preds: &[BasicBlock]) -> Option { - /// Initialize the value list with the split values. These are guaranteed to be - /// interference free, and anything that interferes with them must be split away. + // Initialize the value list with the split values. These are guaranteed to be + // interference free, and anything that interferes with them must be split away. self.reset_values(); dbg!("Trying {} with split values: {:?}", succ_val, self.values);