mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
Use brief format for optimization remarks
This commit is contained in:
@@ -337,13 +337,8 @@ fn report_inline_asm(
|
||||
|
||||
if enabled {
|
||||
diag_handler.note_without_error(&format!(
|
||||
"optimization {} for {} at {}:{}:{}: {}",
|
||||
opt.kind.describe(),
|
||||
opt.pass_name,
|
||||
opt.filename,
|
||||
opt.line,
|
||||
opt.column,
|
||||
opt.message
|
||||
"{}:{}:{}: {}: {}",
|
||||
opt.filename, opt.line, opt.column, opt.pass_name, opt.message,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user