about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2021-11-05 12:01:59 -0700
committerJosh Stone <jistone@redhat.com>2021-11-05 12:01:59 -0700
commitaa35158383d5e409a13be1a0e87b33c549855a1f (patch)
treed8fc44ab520c2e1495fd908563db8707be5a3e16
parentc9567e24248847ba2b2809eb3a8c86a76439807e (diff)
downloadrust-aa35158383d5e409a13be1a0e87b33c549855a1f.tar.gz
rust-aa35158383d5e409a13be1a0e87b33c549855a1f.zip
Update the documented default of -Zmutable-noalias
-rw-r--r--compiler/rustc_session/src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index e894e46a301..3add3e86148 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -1193,7 +1193,7 @@ options! {
     move_size_limit: Option<usize> = (None, parse_opt_number, [TRACKED],
         "the size at which the `large_assignments` lint starts to be emitted"),
     mutable_noalias: Option<bool> = (None, parse_opt_bool, [TRACKED],
-        "emit noalias metadata for mutable references (default: yes for LLVM >= 12, otherwise no)"),
+        "emit noalias metadata for mutable references (default: yes)"),
     new_llvm_pass_manager: Option<bool> = (None, parse_opt_bool, [TRACKED],
         "use new LLVM pass manager (default: no)"),
     nll_facts: bool = (false, parse_bool, [UNTRACKED],