summary refs log tree commit diff
path: root/compiler/rustc_lint/src
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2025-06-06 13:04:03 -0700
committerJubilee Young <workingjubilee@gmail.com>2025-06-23 09:39:59 -0700
commitb34c52043f8df344b32789e0a4b26fd0f9965643 (patch)
tree899b1c06acf0f2b495790a3dfae605179a7aa054 /compiler/rustc_lint/src
parente93a99b3243e1864bab279476f935d944a2229eb (diff)
downloadrust-b34c52043f8df344b32789e0a4b26fd0f9965643.tar.gz
rust-b34c52043f8df344b32789e0a4b26fd0f9965643.zip
compiler: Remove unsupported_fn_ptr_calling_conventions lint
Diffstat (limited to 'compiler/rustc_lint/src')
-rw-r--r--compiler/rustc_lint/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_lint/src/lib.rs b/compiler/rustc_lint/src/lib.rs
index 20568f35a47..48982bda0a0 100644
--- a/compiler/rustc_lint/src/lib.rs
+++ b/compiler/rustc_lint/src/lib.rs
@@ -608,6 +608,7 @@ fn register_builtins(store: &mut LintStore) {
         "converted into hard error, see issue #127323 \
          <https://github.com/rust-lang/rust/issues/127323> for more information",
     );
+    store.register_removed("unsupported_fn_ptr_calling_conventions", "converted into hard error");
     store.register_removed(
         "undefined_naked_function_abi",
         "converted into hard error, see PR #139001 \