Output LLVM optimization remark kind in -Cremark output

This commit is contained in:
Jakub Beránek 2023-05-04 15:39:21 +02:00
parent 6f8c0557e0
commit 00ac29d7b2
No known key found for this signature in database
GPG key ID: 909CD0D26483516B
4 changed files with 13 additions and 2 deletions

View file

@ -195,6 +195,7 @@ pub(crate) struct FromLlvmOptimizationDiag<'a> {
pub line: std::ffi::c_uint,
pub column: std::ffi::c_uint,
pub pass_name: &'a str,
pub kind: &'a str,
pub message: &'a str,
}