about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-02-25 18:34:02 +0000
committerbors <bors@rust-lang.org>2022-02-25 18:34:02 +0000
commitd981633ed6669c6f7b1cb46d1d1a7282e281ca8e (patch)
tree88b6f0555d902c40dd9ae95cd4a77ae4f703a947 /compiler/rustc_codegen_llvm/src
parent6cbc6c35e4b0c948114619a1c883a75b731d32c5 (diff)
parent3c62f2f635c7379bcdcf64e4efa5ffe4ecb0ba6d (diff)
downloadrust-d981633ed6669c6f7b1cb46d1d1a7282e281ca8e.tar.gz
rust-d981633ed6669c6f7b1cb46d1d1a7282e281ca8e.zip
Auto merge of #94290 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini
Bump bootstrap to 1.60

This bumps the bootstrap compiler to 1.60 and cleans up cfgs and Span's rustc_pass_by_value (enabled by the bootstrap bump).
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs
index d39e753b8f3..c2211005a03 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -12,7 +12,7 @@
 #![feature(once_cell)]
 #![feature(nll)]
 #![recursion_limit = "256"]
-#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
+#![allow(rustc::potential_query_instability)]
 
 #[macro_use]
 extern crate rustc_macros;