File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11use std:: ops:: Range ;
2+ use std:: sync:: Arc ;
23
34use gccjit:: { Location , RValue } ;
45use rustc_codegen_ssa:: mir:: debuginfo:: { DebugScope , FunctionDebugContext , VariableKind } ;
56use rustc_codegen_ssa:: traits:: { DebugInfoBuilderMethods , DebugInfoCodegenMethods } ;
6- use rustc_data_structures:: sync:: Lrc ;
77use rustc_index:: bit_set:: DenseBitSet ;
88use rustc_index:: { Idx , IndexVec } ;
99use rustc_middle:: mir:: { self , Body , SourceScope } ;
@@ -172,7 +172,7 @@ fn make_mir_scope<'gcc, 'tcx>(
172172// `lookup_char_pos` return the right information instead.
173173pub struct DebugLoc {
174174 /// Information about the original source file.
175- pub file : Lrc < SourceFile > ,
175+ pub file : Arc < SourceFile > ,
176176 /// The (1-based) line number.
177177 pub line : u32 ,
178178 /// The (1-based) column number.
You can’t perform that action at this time.
0 commit comments