File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
- 1553adfe6884a8f6c28f5a673d3e605535ee0113
1
+ 3507a749b365aae4eefa96ab700a9315d3280ee7
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ pub enum AccessKind {
32
32
///
33
33
/// A `None` namespace indicates we are looking for a module.
34
34
fn try_resolve_did ( tcx : TyCtxt < ' _ > , path : & [ & str ] , namespace : Option < Namespace > ) -> Option < DefId > {
35
+ let _trace = enter_trace_span ! ( "try_resolve_did" , ?path) ;
36
+
35
37
/// Yield all children of the given item, that have the given name.
36
38
fn find_children < ' tcx : ' a , ' a > (
37
39
tcx : TyCtxt < ' tcx > ,
Original file line number Diff line number Diff line change @@ -322,8 +322,8 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
322
322
323
323
// Since our emulated ticks in `mach_absolute_time` *are* nanoseconds,
324
324
// no scaling needs to happen.
325
- let ( numer , denom) = ( 1 , 1 ) ;
326
- this. write_int_fields ( & [ numer . into ( ) , denom. into ( ) ] , & info) ?;
325
+ let ( numerator , denom) = ( 1 , 1 ) ;
326
+ this. write_int_fields ( & [ numerator . into ( ) , denom. into ( ) ] , & info) ?;
327
327
328
328
interp_ok ( Scalar :: from_i32 ( 0 ) ) // KERN_SUCCESS
329
329
}
You can’t perform that action at this time.
0 commit comments