summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2021-10-13 14:53:49 +0200
committerlcnr <rust@lcnr.de>2021-10-15 10:58:18 +0200
commit00e5abe9b6f713b1d868f17694113a5d50d96c19 (patch)
tree5d3dfef5c7dbeb6459d507f28d1cbc5b42c358f9 /compiler/rustc_codegen_llvm
parent80fe0bb76e601054398eb3c4763a6e9125d8101c (diff)
downloadrust-00e5abe9b6f713b1d868f17694113a5d50d96c19.tar.gz
rust-00e5abe9b6f713b1d868f17694113a5d50d96c19.zip
allow `potential_query_instability` everywhere
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 8f4d79e7147..f1dacc393d5 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -13,6 +13,7 @@
 #![feature(iter_zip)]
 #![feature(nll)]
 #![recursion_limit = "256"]
+#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
 
 use back::write::{create_informational_target_machine, create_target_machine};