walk_value: more tracing

This commit is contained in:
Ralf Jung 2018-11-05 14:34:43 +01:00
parent 0529dc818f
commit a0074cafb1

View file

@ -210,6 +210,7 @@ macro_rules! make_value_visitor {
}
fn walk_value(&mut self, v: Self::V) -> EvalResult<'tcx>
{
trace!("walk_value: type: {}", v.layout().ty);
// If this is a multi-variant layout, we have find the right one and proceed with
// that.
match v.layout().variants {