Don't use documentation-style comments inside a function body. (#131)

This commit is contained in:
Dan Gohman
2017-08-02 11:19:16 -07:00
committed by Jakob Stoklund Olesen
parent 406d82f62a
commit 587f37ec6c

View File

@@ -383,8 +383,8 @@ impl<'a> Context<'a> {
succ_val: Value, succ_val: Value,
preds: &[BasicBlock]) preds: &[BasicBlock])
-> Option<Value> { -> Option<Value> {
/// Initialize the value list with the split values. These are guaranteed to be // 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. // interference free, and anything that interferes with them must be split away.
self.reset_values(); self.reset_values();
dbg!("Trying {} with split values: {:?}", succ_val, self.values); dbg!("Trying {} with split values: {:?}", succ_val, self.values);