@@ -115,16 +115,16 @@ function print_with_code(preprint, postprint, io::IO, src::CodeInfo)
115
115
CC. EMPTY_SPTYPES
116
116
end
117
117
end
118
- line_info_preprinter = Base . IRShow. lineinfo_disabled
119
- line_info_postprinter = Base . IRShow. default_expr_type_printer
118
+ line_info_preprinter = IRShow. lineinfo_disabled
119
+ line_info_postprinter = IRShow. default_expr_type_printer
120
120
preprint (io)
121
121
bb_idx_prev = bb_idx = 1
122
122
for idx = 1 : length (src. code)
123
123
preprint (io, idx)
124
124
@static if isdefined (Base, :__has_internal_change ) && Base. __has_internal_change (v " 1.12-alpha" , :printcodeinfocalls )
125
- bb_idx = Base . IRShow. show_ir_stmt (io, src, idx, line_info_preprinter, line_info_postprinter, sptypes, used, cfg, bb_idx)
125
+ bb_idx = IRShow. show_ir_stmt (io, src, idx, line_info_preprinter, line_info_postprinter, sptypes, used, cfg, bb_idx)
126
126
else
127
- bb_idx = Base . IRShow. show_ir_stmt (io, src, idx, line_info_preprinter, line_info_postprinter, used, cfg, bb_idx)
127
+ bb_idx = IRShow. show_ir_stmt (io, src, idx, line_info_preprinter, line_info_postprinter, used, cfg, bb_idx)
128
128
end
129
129
postprint (io, idx, bb_idx != bb_idx_prev)
130
130
bb_idx_prev = bb_idx
0 commit comments