@@ -115,16 +115,16 @@ function print_with_code(preprint, postprint, io::IO, src::CodeInfo)
115115 CC. EMPTY_SPTYPES
116116 end
117117 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
120120 preprint (io)
121121 bb_idx_prev = bb_idx = 1
122122 for idx = 1 : length (src. code)
123123 preprint (io, idx)
124124 @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)
126126 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)
128128 end
129129 postprint (io, idx, bb_idx != bb_idx_prev)
130130 bb_idx_prev = bb_idx
0 commit comments