Skip to content

Commit 8c03364

Browse files
committed
---
yaml --- r: 6791 b: refs/heads/master c: 555006a h: refs/heads/master i: 6789: a82259c 6787: 91dc2cc 6783: d3cdcbd v: v3
1 parent 666081b commit 8c03364

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: fe683dfb80498fa3336c6f5f96b6b82917ac08b3
2+
refs/heads/master: 555006a30412d95000dd126020f5288df38f78e5

trunk/man/rustc.1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,6 @@ Build a test harness.
121121
\fB--gc\fR:
122122
\fBEXPERIMENTAL\fR. Garbage-collect shared data.
123123
.TP
124-
\fB--stack-growth\fR:
125-
\fBEXPERIMENTAL\fR. Perform stack growth checks.
126-
.TP
127124
\fB--warn-unused-imports\fR:
128125
Warn about unnecessary imports.
129126
.SH "BUGS"

trunk/src/comp/driver/rustc.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,6 @@ options:
329329
--target <triple> target to compile for (default: host triple)
330330
--test build test harness
331331
--gc garbage collect shared data (experimental/temporary)
332-
--stack-growth perform stack checks (experimental)
333332
--warn-unused-imports
334333
warn about unnecessary imports
335334
@@ -461,7 +460,6 @@ fn build_session_options(match: getopts::match)
461460
let cfg = parse_cfgspecs(getopts::opt_strs(match, "cfg"));
462461
let test = opt_present(match, "test");
463462
let do_gc = opt_present(match, "gc");
464-
let stack_growth = opt_present(match, "stack-growth");
465463
let warn_unused_imports = opt_present(match, "warn-unused-imports");
466464
let sopts: @session::options =
467465
@{crate_type: crate_type,
@@ -483,7 +481,6 @@ fn build_session_options(match: getopts::match)
483481
parse_only: parse_only,
484482
no_trans: no_trans,
485483
do_gc: do_gc,
486-
stack_growth: stack_growth,
487484
no_asm_comments: no_asm_comments,
488485
warn_unused_imports: warn_unused_imports};
489486
ret sopts;
@@ -526,7 +523,6 @@ fn opts() -> [getopts::opt] {
526523
optmulti("cfg"), optflag("test"),
527524
optflag("no-core"),
528525
optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"),
529-
optflag("stack-growth"),
530526
optflag("no-asm-comments"),
531527
optflag("warn-unused-imports")];
532528
}

trunk/src/comp/driver/session.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ type options =
4545
parse_only: bool,
4646
no_trans: bool,
4747
do_gc: bool,
48-
stack_growth: bool,
4948
no_asm_comments: bool,
5049
warn_unused_imports: bool};
5150

0 commit comments

Comments
 (0)