1
Fork 0

Port ArchiveBuildFailure

This commit is contained in:
SLASHLogin 2022-08-26 14:11:47 +02:00
parent 978b5f73e4
commit d32caf9ced
3 changed files with 11 additions and 2 deletions

View file

@ -84,3 +84,9 @@ pub(crate) struct LinkageConstOrMutType {
#[derive(SessionDiagnostic)]
#[diag(codegen_llvm::sanitizer_memtag_requires_mte)]
pub(crate) struct SanitizerMemtagRequiresMte;
#[derive(SessionDiagnostic)]
#[diag(codegen_llvm::archive_build_failure)]
pub(crate) struct ArchiveBuildFailure {
pub error: std::io::Error,
}