about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/errors.rs
diff options
context:
space:
mode:
authorThe rustc-dev-guide Cronjob Bot <github-actions@github.com>2025-06-12 04:06:44 +0000
committerThe rustc-dev-guide Cronjob Bot <github-actions@github.com>2025-06-12 04:06:44 +0000
commit6da0ebf087736289ff29f641c7498f4a94d83639 (patch)
tree3ef67bc66cf749e5172054480bdb5f1d8715dc5f /compiler/rustc_codegen_llvm/src/errors.rs
parent8a7fbded4dd50f297bbcda39a94624ffb689a849 (diff)
parent14346303d760027e53214e705109a62c0f00b214 (diff)
downloadrust-6da0ebf087736289ff29f641c7498f4a94d83639.tar.gz
rust-6da0ebf087736289ff29f641c7498f4a94d83639.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/errors.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/errors.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/compiler/rustc_codegen_llvm/src/errors.rs b/compiler/rustc_codegen_llvm/src/errors.rs
index ecf108f988f..eaafc680712 100644
--- a/compiler/rustc_codegen_llvm/src/errors.rs
+++ b/compiler/rustc_codegen_llvm/src/errors.rs
@@ -58,18 +58,6 @@ pub(crate) struct SymbolAlreadyDefined<'a> {
 }
 
 #[derive(Diagnostic)]
-#[diag(codegen_llvm_invalid_minimum_alignment_not_power_of_two)]
-pub(crate) struct InvalidMinimumAlignmentNotPowerOfTwo {
-    pub align: u64,
-}
-
-#[derive(Diagnostic)]
-#[diag(codegen_llvm_invalid_minimum_alignment_too_large)]
-pub(crate) struct InvalidMinimumAlignmentTooLarge {
-    pub align: u64,
-}
-
-#[derive(Diagnostic)]
 #[diag(codegen_llvm_sanitizer_memtag_requires_mte)]
 pub(crate) struct SanitizerMemtagRequiresMte;