about summary refs log tree commit diff
path: root/src/librustc_interface
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2020-06-20 16:39:53 +0200
committerGitHub <noreply@github.com>2020-06-20 16:39:53 +0200
commit91bd3337e32a70c55dd5226c5310dd766f78ada4 (patch)
tree3b985cce2784437ec9caed036d0415cefeffec42 /src/librustc_interface
parent77efcab0f2badb39ba4605ae40337e7bda51fa81 (diff)
parent83e6c0e98657d8df3dd4f45fa22baadcac986402 (diff)
downloadrust-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.rs2
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);