Kill some extraneous spaces

This commit is contained in:
greg 2016-12-28 16:04:41 -08:00
parent 1d8102b9fa
commit fe8418edbe
2 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ pub fn compilation_sequence(ast: AST, sourcefile: &str) {
_ => panic!("Bad filename {}", sourcefile),
};
compile_ast(ast, ll_filename);
Command::new("llc")
.arg("-filetype=obj")

View File

@ -22,7 +22,7 @@ mod compilation;
mod llvm_wrap;
fn main() {
let option_matches = program_options().parse(std::env::args()).expect("Could not parse options");
let option_matches = program_options().parse(std::env::args()).expect("Could not parse options");
match option_matches.free[..] {
[] | [_] => {
run_repl();