diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2024-11-28 06:54:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-28 06:54:16 +0000 |
| commit | 8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb (patch) | |
| tree | 564950531f457ebbe2a114e486cb2c8c72bf9ed0 /compiler/rustc_codegen_llvm/src/errors.rs | |
| parent | 4e3354ef925d9711c125470097643236c3a983d0 (diff) | |
| parent | 1a435ed7edc19812c29006701b0106a0d0802542 (diff) | |
| download | rust-8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb.tar.gz rust-8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb.zip | |
Merge pull request #18566 from lnicola/sync-from-rust
minor: Sync from downstream
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/errors.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/errors.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/errors.rs b/compiler/rustc_codegen_llvm/src/errors.rs index 0d436e1891e..3cdb5b971d9 100644 --- a/compiler/rustc_codegen_llvm/src/errors.rs +++ b/compiler/rustc_codegen_llvm/src/errors.rs @@ -31,6 +31,15 @@ pub(crate) struct UnstableCTargetFeature<'a> { pub feature: &'a str, } +#[derive(Diagnostic)] +#[diag(codegen_llvm_forbidden_ctarget_feature)] +#[note] +#[note(codegen_llvm_forbidden_ctarget_feature_issue)] +pub(crate) struct ForbiddenCTargetFeature<'a> { + pub feature: &'a str, + pub reason: &'a str, +} + #[derive(Subdiagnostic)] pub(crate) enum PossibleFeature<'a> { #[help(codegen_llvm_possible_feature)] |
