File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
use std:: ops:: Range ;
2
+ use std:: sync:: Arc ;
2
3
3
4
use gccjit:: { Location , RValue } ;
4
5
use rustc_codegen_ssa:: mir:: debuginfo:: { DebugScope , FunctionDebugContext , VariableKind } ;
5
6
use rustc_codegen_ssa:: traits:: { DebugInfoBuilderMethods , DebugInfoCodegenMethods } ;
6
- use rustc_data_structures:: sync:: Lrc ;
7
7
use rustc_index:: bit_set:: DenseBitSet ;
8
8
use rustc_index:: { Idx , IndexVec } ;
9
9
use rustc_middle:: mir:: { self , Body , SourceScope } ;
@@ -172,7 +172,7 @@ fn make_mir_scope<'gcc, 'tcx>(
172
172
// `lookup_char_pos` return the right information instead.
173
173
pub struct DebugLoc {
174
174
/// Information about the original source file.
175
- pub file : Lrc < SourceFile > ,
175
+ pub file : Arc < SourceFile > ,
176
176
/// The (1-based) line number.
177
177
pub line : u32 ,
178
178
/// The (1-based) column number.
You can’t perform that action at this time.
0 commit comments