Allow using -Z fewer-names=no
to retain value names
Change `-Z fewer-names` into an optional boolean flag and allow using it to either discard value names when true or retain them when false, regardless of other settings.
This commit is contained in:
parent
068320b39e
commit
fafe3cd682
4 changed files with 31 additions and 8 deletions
|
@ -547,7 +547,7 @@ fn test_debugging_options_tracking_hash() {
|
|||
tracked!(debug_macros, true);
|
||||
tracked!(dep_info_omit_d_target, true);
|
||||
tracked!(dual_proc_macros, true);
|
||||
tracked!(fewer_names, true);
|
||||
tracked!(fewer_names, Some(true));
|
||||
tracked!(force_overflow_checks, Some(true));
|
||||
tracked!(force_unstable_if_unmarked, true);
|
||||
tracked!(fuel, Some(("abc".to_string(), 99)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue