Update help message
This commit is contained in:
parent
cfdd6ba77e
commit
db6f7a9d1a
2 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ impl SuppressRegionErrors {
|
||||||
// If we're on Migrate mode, report AST region errors
|
// If we're on Migrate mode, report AST region errors
|
||||||
BorrowckMode::Migrate => SuppressRegionErrors { suppressed: false },
|
BorrowckMode::Migrate => SuppressRegionErrors { suppressed: false },
|
||||||
|
|
||||||
// If we're on MIR don't report AST region errors as they should be reported by NLL
|
// If we're on MIR, don't report AST region errors as they should be reported by NLL
|
||||||
BorrowckMode::Mir => SuppressRegionErrors { suppressed: true },
|
BorrowckMode::Mir => SuppressRegionErrors { suppressed: true },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1211,7 +1211,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
|
||||||
identify_regions: bool = (false, parse_bool, [UNTRACKED],
|
identify_regions: bool = (false, parse_bool, [UNTRACKED],
|
||||||
"make unnamed regions display as '# (where # is some non-ident unique id)"),
|
"make unnamed regions display as '# (where # is some non-ident unique id)"),
|
||||||
borrowck: Option<String> = (None, parse_opt_string, [UNTRACKED],
|
borrowck: Option<String> = (None, parse_opt_string, [UNTRACKED],
|
||||||
"select which borrowck is used (`ast`, `mir`, `migrate`, or `compare`)"),
|
"select which borrowck is used (`mir` or `migrate`)"),
|
||||||
time_passes: bool = (false, parse_bool, [UNTRACKED],
|
time_passes: bool = (false, parse_bool, [UNTRACKED],
|
||||||
"measure time of each rustc pass"),
|
"measure time of each rustc pass"),
|
||||||
time: bool = (false, parse_bool, [UNTRACKED],
|
time: bool = (false, parse_bool, [UNTRACKED],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue