Browse Source
cranelift::codegen::Context::optimize(): reduce verbosity of "egraph stats" traces (#6122)
pull/6125/head
Yoni L
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
cranelift/codegen/src/context.rs
|
@ -393,7 +393,7 @@ impl Context { |
|
|
&mut alias_analysis, |
|
|
&mut alias_analysis, |
|
|
); |
|
|
); |
|
|
pass.run(); |
|
|
pass.run(); |
|
|
log::info!("egraph stats: {:?}", pass.stats); |
|
|
log::debug!("egraph stats: {:?}", pass.stats); |
|
|
trace!("After egraph optimization:\n{}", self.func.display()); |
|
|
trace!("After egraph optimization:\n{}", self.func.display()); |
|
|
Ok(()) |
|
|
Ok(()) |
|
|
} |
|
|
} |
|
|