about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2022-10-06 12:33:29 +0200
committerRalf Jung <post@ralfj.de>2022-10-11 22:47:31 +0200
commit8536eb016cba13d333574c0d6ba2f2b0b21792ac (patch)
treee07fe71025b945a62fb8a2098be11c0939638db2
parent4f55ebbd4fb2aaf6ac97e484c07504e5124422e7 (diff)
downloadrust-8536eb016cba13d333574c0d6ba2f2b0b21792ac.tar.gz
rust-8536eb016cba13d333574c0d6ba2f2b0b21792ac.zip
rename rustc_allocator_nounwind to rustc_nounwind
-rw-r--r--crates/hir-def/src/builtin_attr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-def/src/builtin_attr.rs b/crates/hir-def/src/builtin_attr.rs
index 0e7ce5f85f9..39581b33a8d 100644
--- a/crates/hir-def/src/builtin_attr.rs
+++ b/crates/hir-def/src/builtin_attr.rs
@@ -379,7 +379,7 @@ pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
     // ==========================================================================
 
     rustc_attr!(rustc_allocator, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
-    rustc_attr!(rustc_allocator_nounwind, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
+    rustc_attr!(rustc_nounwind, Normal, template!(Word), WarnFollowing, IMPL_DETAIL),
     gated!(
         alloc_error_handler, Normal, template!(Word), WarnFollowing,
         experimental!(alloc_error_handler)