diff options
| author | Ralf Jung <post@ralfj.de> | 2024-09-03 18:48:15 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-10-20 15:22:21 +0200 |
| commit | de3cbf3c567e6d81e6ead5c0f646add33df457d1 (patch) | |
| tree | 52f6aa52524d46ec7780e9d76daacc2ac0eca89a /compiler/rustc_lint/src/lib.rs | |
| parent | bfab34af4c5bfbcc9168064857bbec826a60a0b9 (diff) | |
| download | rust-de3cbf3c567e6d81e6ead5c0f646add33df457d1.tar.gz rust-de3cbf3c567e6d81e6ead5c0f646add33df457d1.zip | |
make unsupported_calling_conventions a hard error
Diffstat (limited to 'compiler/rustc_lint/src/lib.rs')
| -rw-r--r-- | compiler/rustc_lint/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_lint/src/lib.rs b/compiler/rustc_lint/src/lib.rs index 81352af3d48..a7faab0868d 100644 --- a/compiler/rustc_lint/src/lib.rs +++ b/compiler/rustc_lint/src/lib.rs @@ -598,6 +598,7 @@ fn register_builtins(store: &mut LintStore) { "converted into hard error, see PR #125380 \ <https://github.com/rust-lang/rust/pull/125380> for more information", ); + store.register_removed("unsupported_calling_conventions", "converted into hard error"); } fn register_internals(store: &mut LintStore) { |
