Long lines

This commit is contained in:
Brian Anderson 2012-09-28 17:30:40 -07:00
parent eba5eeaef8
commit 9a8d4adb7d
2 changed files with 6 additions and 2 deletions

View file

@ -451,7 +451,9 @@ fn gen_child_taskgroup(linked: bool, supervised: bool)
// it should be enabled only in debug builds. // it should be enabled only in debug builds.
let new_generation = let new_generation =
match *old_ancestors { match *old_ancestors {
Some(ref arc) => access_ancestors(arc, |a| a.generation+1), Some(ref arc) => {
access_ancestors(arc, |a| a.generation+1)
}
None => 0 // the actual value doesn't really matter. None => 0 // the actual value doesn't really matter.
}; };
assert new_generation < uint::max_value; assert new_generation < uint::max_value;

View file

@ -225,7 +225,9 @@ mod write {
jit::exec(sess, pm.llpm, llmod, CodeGenOptLevel, true); jit::exec(sess, pm.llpm, llmod, CodeGenOptLevel, true);
if sess.time_llvm_passes() { llvm::LLVMRustPrintPassTimings(); } if sess.time_llvm_passes() {
llvm::LLVMRustPrintPassTimings();
}
return; return;
} }