remove dead assignments

This commit is contained in:
Niko Matsakis 2012-05-24 13:35:57 -07:00
parent f5c51b0a9c
commit ccd8d5573e
16 changed files with 24 additions and 51 deletions

View file

@ -587,8 +587,8 @@ fn build_output_filenames(input: input,
ofile: option<str>,
sess: session)
-> output_filenames {
let mut obj_path = "";
let mut out_path: str = "";
let mut obj_path; // FIXME remove mut after snapshot
let mut out_path; // FIXME remove mut after snapshot
let sopts = sess.opts;
let stop_after_codegen =
sopts.output_type != link::output_type_exe ||