1
Fork 0

Add rustc option to output LLVM optimization remarks to YAML files

This commit is contained in:
Jakub Beránek 2023-06-25 23:39:02 +02:00
parent 8882507bc7
commit 62728c7aaf
No known key found for this signature in database
GPG key ID: 909CD0D26483516B
11 changed files with 180 additions and 13 deletions

View file

@ -1023,3 +1023,9 @@ pub struct TargetFeatureSafeTrait {
#[label(codegen_ssa_label_def)]
pub def: Span,
}
#[derive(Diagnostic)]
#[diag(codegen_ssa_error_creating_remark_dir)]
pub struct ErrorCreatingRemarkDir {
pub error: std::io::Error,
}