rustc: Remove --stack-growth option

This commit is contained in:
Brian Anderson 2011-12-17 16:58:26 -08:00
parent fe683dfb80
commit 555006a304
3 changed files with 0 additions and 8 deletions

View File

@ -121,9 +121,6 @@ Build a test harness.
\fB--gc\fR: \fB--gc\fR:
\fBEXPERIMENTAL\fR. Garbage-collect shared data. \fBEXPERIMENTAL\fR. Garbage-collect shared data.
.TP .TP
\fB--stack-growth\fR:
\fBEXPERIMENTAL\fR. Perform stack growth checks.
.TP
\fB--warn-unused-imports\fR: \fB--warn-unused-imports\fR:
Warn about unnecessary imports. Warn about unnecessary imports.
.SH "BUGS" .SH "BUGS"

View File

@ -329,7 +329,6 @@ options:
--target <triple> target to compile for (default: host triple) --target <triple> target to compile for (default: host triple)
--test build test harness --test build test harness
--gc garbage collect shared data (experimental/temporary) --gc garbage collect shared data (experimental/temporary)
--stack-growth perform stack checks (experimental)
--warn-unused-imports --warn-unused-imports
warn about unnecessary imports warn about unnecessary imports
@ -461,7 +460,6 @@ fn build_session_options(match: getopts::match)
let cfg = parse_cfgspecs(getopts::opt_strs(match, "cfg")); let cfg = parse_cfgspecs(getopts::opt_strs(match, "cfg"));
let test = opt_present(match, "test"); let test = opt_present(match, "test");
let do_gc = opt_present(match, "gc"); let do_gc = opt_present(match, "gc");
let stack_growth = opt_present(match, "stack-growth");
let warn_unused_imports = opt_present(match, "warn-unused-imports"); let warn_unused_imports = opt_present(match, "warn-unused-imports");
let sopts: @session::options = let sopts: @session::options =
@{crate_type: crate_type, @{crate_type: crate_type,
@ -483,7 +481,6 @@ fn build_session_options(match: getopts::match)
parse_only: parse_only, parse_only: parse_only,
no_trans: no_trans, no_trans: no_trans,
do_gc: do_gc, do_gc: do_gc,
stack_growth: stack_growth,
no_asm_comments: no_asm_comments, no_asm_comments: no_asm_comments,
warn_unused_imports: warn_unused_imports}; warn_unused_imports: warn_unused_imports};
ret sopts; ret sopts;
@ -526,7 +523,6 @@ fn opts() -> [getopts::opt] {
optmulti("cfg"), optflag("test"), optmulti("cfg"), optflag("test"),
optflag("no-core"), optflag("no-core"),
optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"), optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"),
optflag("stack-growth"),
optflag("no-asm-comments"), optflag("no-asm-comments"),
optflag("warn-unused-imports")]; optflag("warn-unused-imports")];
} }

View File

@ -45,7 +45,6 @@ type options =
parse_only: bool, parse_only: bool,
no_trans: bool, no_trans: bool,
do_gc: bool, do_gc: bool,
stack_growth: bool,
no_asm_comments: bool, no_asm_comments: bool,
warn_unused_imports: bool}; warn_unused_imports: bool};