about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates
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
commit2b50cd18772d3db523070d418dc0411b885a3ff4 (patch)
treed7f1d8f99c343eef5f23e23a4441a26bd2d8ca01 /src/tools/rust-analyzer/crates
parentdb0597f5619d5ed93feca28e61226d3581cc7867 (diff)
downloadrust-2b50cd18772d3db523070d418dc0411b885a3ff4.tar.gz
rust-2b50cd18772d3db523070d418dc0411b885a3ff4.zip
rename rustc_allocator_nounwind to rustc_nounwind
Diffstat (limited to 'src/tools/rust-analyzer/crates')
-rw-r--r--src/tools/rust-analyzer/crates/hir-def/src/builtin_attr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-def/src/builtin_attr.rs b/src/tools/rust-analyzer/crates/hir-def/src/builtin_attr.rs
index 0e7ce5f85f9..39581b33a8d 100644
--- a/src/tools/rust-analyzer/crates/hir-def/src/builtin_attr.rs
+++ b/src/tools/rust-analyzer/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)