auto merge of #17590 : bjadamson/rust/rustc-improvements, r=alexcrichton
Removes an unnecessary allocation when passing the command line arguments to the librustc driver.
This commit is contained in:
commit
b2d4eb186e
@ -29,16 +29,13 @@ use syntax::diagnostics;
|
||||
|
||||
use getopts;
|
||||
|
||||
|
||||
pub mod driver;
|
||||
pub mod session;
|
||||
pub mod config;
|
||||
pub mod pretty;
|
||||
|
||||
|
||||
pub fn main_args(args: &[String]) -> int {
|
||||
let owned_args = args.to_vec();
|
||||
monitor(proc() run_compiler(owned_args.as_slice()));
|
||||
pub fn run(args: Vec<String>) -> int {
|
||||
monitor(proc() run_compiler(args.as_slice()));
|
||||
0
|
||||
}
|
||||
|
||||
|
@ -150,5 +150,6 @@ mod rustc {
|
||||
|
||||
pub fn main() {
|
||||
let args = std::os::args();
|
||||
std::os::set_exit_status(driver::main_args(args.as_slice()));
|
||||
let result = driver::run(args);
|
||||
std::os::set_exit_status(result);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user