diff options
| author | Ralf Jung <post@ralfj.de> | 2020-06-20 16:39:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-20 16:39:53 +0200 |
| commit | 91bd3337e32a70c55dd5226c5310dd766f78ada4 (patch) | |
| tree | 3b985cce2784437ec9caed036d0415cefeffec42 /src/librustc_interface | |
| parent | 77efcab0f2badb39ba4605ae40337e7bda51fa81 (diff) | |
| parent | 83e6c0e98657d8df3dd4f45fa22baadcac986402 (diff) | |
| download | rust-91bd3337e32a70c55dd5226c5310dd766f78ada4.tar.gz rust-91bd3337e32a70c55dd5226c5310dd766f78ada4.zip | |
Rollup merge of #73404 - ajpaverd:cfguard_syntax, r=Mark-Simulacrum
Update CFGuard syntax Update the naming and syntax of the control-flow-guard option, as discussed in #68793. r? @Mark-Simulacrum
Diffstat (limited to 'src/librustc_interface')
| -rw-r--r-- | src/librustc_interface/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_interface/tests.rs b/src/librustc_interface/tests.rs index a832c2decaa..d861b444c88 100644 --- a/src/librustc_interface/tests.rs +++ b/src/librustc_interface/tests.rs @@ -465,7 +465,6 @@ fn test_debugging_options_tracking_hash() { untracked!(ast_json_noexpand, true); untracked!(borrowck, String::from("other")); untracked!(borrowck_stats, true); - untracked!(control_flow_guard, CFGuard::Checks); untracked!(deduplicate_diagnostics, true); untracked!(dep_tasks, true); untracked!(dont_buffer_diagnostics, true); @@ -539,6 +538,7 @@ fn test_debugging_options_tracking_hash() { tracked!(binary_dep_depinfo, true); tracked!(chalk, true); tracked!(codegen_backend, Some("abc".to_string())); + tracked!(control_flow_guard, CFGuard::Checks); tracked!(crate_attr, vec!["abc".to_string()]); tracked!(debug_macros, true); tracked!(dep_info_omit_d_target, true); |
