about summary refs log tree commit diff
path: root/src/rustc
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 12:40:49 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 12:40:49 -0700
commit1642df8efa9e73b325e45a610ec0f57ad4bd5c9d (patch)
tree77c3adb3db92837ea814a7379dc0e4d797846856 /src/rustc
parentfcab11da47daa6461a3b5895a1dc16e582f7cae3 (diff)
downloadrust-1642df8efa9e73b325e45a610ec0f57ad4bd5c9d.tar.gz
rust-1642df8efa9e73b325e45a610ec0f57ad4bd5c9d.zip
Remove a workaround
Diffstat (limited to 'src/rustc')
-rw-r--r--src/rustc/driver/driver.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/driver/driver.rs b/src/rustc/driver/driver.rs
index 550e2290bfa..a700d1d5e95 100644
--- a/src/rustc/driver/driver.rs
+++ b/src/rustc/driver/driver.rs
@@ -580,8 +580,8 @@ fn build_output_filenames(input: input,
                           ofile: option<str>,
                           sess: session)
         -> output_filenames {
-    let mut obj_path; // FIXME remove mut after snapshot
-    let mut out_path; // FIXME remove mut after snapshot
+    let obj_path;
+    let out_path;
     let sopts = sess.opts;
     let stop_after_codegen =
         sopts.output_type != link::output_type_exe ||