about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2023-01-06 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2023-01-10 10:14:51 +0100
commit78075e1e26176f86cbafb0bf24f86dba174351ed (patch)
treee336f540dac4e3f9fc465057f643d463c876da93 /compiler/rustc_interface/src
parentdeba5ddd0776108c51a69844d0ffe3f96886dd52 (diff)
downloadrust-78075e1e26176f86cbafb0bf24f86dba174351ed.tar.gz
rust-78075e1e26176f86cbafb0bf24f86dba174351ed.zip
Change type of mutable_noalias to bool
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 316e2e29cd8..6c26b47eaa4 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -754,7 +754,7 @@ fn test_unstable_options_tracking_hash() {
     tracked!(mir_enable_passes, vec![("DestProp".to_string(), false)]);
     tracked!(mir_opt_level, Some(4));
     tracked!(move_size_limit, Some(4096));
-    tracked!(mutable_noalias, Some(true));
+    tracked!(mutable_noalias, false);
     tracked!(no_generate_arange_section, true);
     tracked!(no_jump_tables, true);
     tracked!(no_link, true);