Rustfmt fixes

This commit is contained in:
Morgan Phillips
2016-08-29 13:17:08 -07:00
parent 7476d996f6
commit 894d3796fb
5 changed files with 22 additions and 5 deletions

View File

@@ -108,7 +108,11 @@ impl DominatorTree {
// TODO: we can't rely on instruction numbers to always be ordered
// from lowest to highest. Given that, it will be necessary to create
// an abolute mapping to determine the instruction order in the future.
if a.1 == NO_INST || a.1 < b.1 { a } else { b }
if a.1 == NO_INST || a.1 < b.1 {
a
} else {
b
}
}
/// Returns the immediate dominator of some ebb or None if the