File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -160,15 +160,6 @@ impl PassInstrumentation for Print {
160
160
op : & OperationRef ,
161
161
changed : IRAfterPass ,
162
162
) {
163
- std:: println!(
164
- "
165
- ------------------------------------DESPUES:\
166
- {}-------------------------------------------------------
167
- " ,
168
- pass. name( )
169
- ) ;
170
- // std::println!("RESULTADO DE CHANGED: {}", changed);
171
- #[ allow( clippy:: needless_bool) ]
172
163
// Always print, unless "only_when_modified" has been set and there have not been changes.
173
164
let print_when_changed = if self . only_when_modified && changed == IRAfterPass :: Unchanged {
174
165
false
@@ -182,12 +173,6 @@ impl PassInstrumentation for Print {
182
173
}
183
174
184
175
fn run_before_pass ( & mut self , pass : & dyn OperationPass , op : & OperationRef ) {
185
- std:: println!(
186
- "
187
- ------------------------------------ANTES:{}-------------------------------------------------------
188
- " ,
189
- pass. name( )
190
- ) ;
191
176
if self . should_print ( pass) {
192
177
let op = op. borrow ( ) ;
193
178
self . print_ir ( op) ;
You can’t perform that action at this time.
0 commit comments