@@ -46,18 +46,15 @@ const trans_stats: uint = 1 << 4;
46
46
const no_asm_comments: uint = 1 << 5 ;
47
47
const no_verify: uint = 1 << 6 ;
48
48
const trace: uint = 1 << 7 ;
49
- // FIXME (#2377): This exists to transition to a Rust crate runtime
50
- // It should be removed
51
- const no_rt: uint = 1 << 8 ;
52
- const coherence: uint = 1 << 9 ;
53
- const borrowck_stats: uint = 1 << 10 ;
54
- const borrowck_note_pure: uint = 1 << 11 ;
55
- const borrowck_note_loan: uint = 1 << 12 ;
56
- const no_landing_pads: uint = 1 << 13 ;
57
- const debug_llvm: uint = 1 << 14 ;
58
- const count_type_sizes: uint = 1 << 15 ;
59
- const meta_stats: uint = 1 << 16 ;
60
- const no_opt: uint = 1 << 17 ;
49
+ const coherence: uint = 1 << 8 ;
50
+ const borrowck_stats: uint = 1 << 9 ;
51
+ const borrowck_note_pure: uint = 1 << 10 ;
52
+ const borrowck_note_loan: uint = 1 << 11 ;
53
+ const no_landing_pads: uint = 1 << 12 ;
54
+ const debug_llvm: uint = 1 << 13 ;
55
+ const count_type_sizes: uint = 1 << 14 ;
56
+ const meta_stats: uint = 1 << 15 ;
57
+ const no_opt: uint = 1 << 16 ;
61
58
62
59
fn debugging_opts_map ( ) -> ~[ ( ~str , ~str , uint ) ] {
63
60
~[ ( ~"verbose", ~"in general, enable more debug printouts", verbose) ,
@@ -70,7 +67,6 @@ fn debugging_opts_map() -> ~[(~str, ~str, uint)] {
70
67
( ~"no-asm-comments", ~"omit comments when using -S ", no_asm_comments) ,
71
68
( ~"no-verify", ~"skip LLVM verification", no_verify) ,
72
69
( ~"trace", ~"emit trace logs", trace) ,
73
- ( ~"no-rt", ~"do not link to the runtime", no_rt) ,
74
70
( ~"coherence", ~"perform coherence checking", coherence) ,
75
71
( ~"borrowck-stats", ~"gather borrowck statistics", borrowck_stats) ,
76
72
( ~"borrowck-note-pure", ~"note where purity is req' d",
0 commit comments