about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPavel Sountsov <siege@google.com>2016-05-05 22:06:56 -0700
committerSiegeLord <slabode@aim.com>2016-05-10 08:21:00 -0700
commit105aa8c30fc97fc7bfadc23bbf35eee412e164cb (patch)
tree49703ff8364b9bcc9ddc42f4f785165c5fdb01df /src
parentf16eac928a7feec28825db36acd259aca2382381 (diff)
downloadrust-105aa8c30fc97fc7bfadc23bbf35eee412e164cb.tar.gz
rust-105aa8c30fc97fc7bfadc23bbf35eee412e164cb.zip
Fix funky formatting.
Diffstat (limited to 'src')
-rw-r--r--src/librustc_driver/driver.rs21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs
index 0d5ecc53a79..731283abc10 100644
--- a/src/librustc_driver/driver.rs
+++ b/src/librustc_driver/driver.rs
@@ -140,17 +140,16 @@ pub fn compile_input(sess: &Session,
 
         write_out_deps(sess, &outputs, &id);
 
-        {            controller_entry_point!(after_write_deps,
-                                    sess,
-                                    CompileState::state_after_write_deps(input,
-                                                                         sess,
-                                                                         outdir,
-                                                                         output,
-                                                                         &cstore,
-                                                                         &expanded_crate,
-                                                                         &id),
-                                    Ok(()));
-        }
+        controller_entry_point!(after_write_deps,
+                                sess,
+                                CompileState::state_after_write_deps(input,
+                                                                     sess,
+                                                                     outdir,
+                                                                     output,
+                                                                     &cstore,
+                                                                     &expanded_crate,
+                                                                     &id),
+                                Ok(()));
 
         let expanded_crate = assign_node_ids(sess, expanded_crate);
         let dep_graph = DepGraph::new(sess.opts.build_dep_graph());