diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-28 17:30:40 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-28 17:30:40 -0700 |
| commit | 9a8d4adb7decf774bbb87c7a8415c1a95fe1825b (patch) | |
| tree | 1b5a552dbead6bdee44527044d6545886f39c9ef | |
| parent | eba5eeaef843d9f2a8b84926ba12dfa84d6d3541 (diff) | |
| download | rust-9a8d4adb7decf774bbb87c7a8415c1a95fe1825b.tar.gz rust-9a8d4adb7decf774bbb87c7a8415c1a95fe1825b.zip | |
Long lines
| -rw-r--r-- | src/libcore/task/spawn.rs | 4 | ||||
| -rw-r--r-- | src/rustc/back/link.rs | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/libcore/task/spawn.rs b/src/libcore/task/spawn.rs index 33e711ce9ac..7ae4c7b0950 100644 --- a/src/libcore/task/spawn.rs +++ b/src/libcore/task/spawn.rs @@ -451,7 +451,9 @@ fn gen_child_taskgroup(linked: bool, supervised: bool) // it should be enabled only in debug builds. let new_generation = 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. }; assert new_generation < uint::max_value; diff --git a/src/rustc/back/link.rs b/src/rustc/back/link.rs index 592e4ecea35..2e310785306 100644 --- a/src/rustc/back/link.rs +++ b/src/rustc/back/link.rs @@ -225,7 +225,9 @@ mod write { jit::exec(sess, pm.llpm, llmod, CodeGenOptLevel, true); - if sess.time_llvm_passes() { llvm::LLVMRustPrintPassTimings(); } + if sess.time_llvm_passes() { + llvm::LLVMRustPrintPassTimings(); + } return; } |
