about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2022-01-05 13:02:16 +0100
committerlcnr <rust@lcnr.de>2022-02-01 10:15:59 +0100
commita1a30f7548bdb625f8f90c25258f8ab463cebe8c (patch)
tree99c2f538217e5b632984902189e1eba204e407b2 /compiler/rustc_codegen_llvm
parent25862ffc8d360b34dd8ec82a2f01750aaab976b7 (diff)
downloadrust-a1a30f7548bdb625f8f90c25258f8ab463cebe8c.tar.gz
rust-a1a30f7548bdb625f8f90c25258f8ab463cebe8c.zip
add a rustc::query_stability lint
Diffstat (limited to 'compiler/rustc_codegen_llvm')
-rw-r--r--compiler/rustc_codegen_llvm/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs
index f0612eaba80..75836e14385 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -11,6 +11,7 @@
 #![feature(extern_types)]
 #![feature(nll)]
 #![recursion_limit = "256"]
+#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
 
 use back::write::{create_informational_target_machine, create_target_machine};