1
Fork 0

Remove debug print.

This commit is contained in:
Scott Olson 2016-03-21 01:04:50 -06:00
parent 0de1bbefd5
commit 2994732a81

View file

@ -677,7 +677,6 @@ impl<'a, 'tcx: 'a, 'arena> Interpreter<'a, 'tcx, 'arena> {
Deref => { Deref => {
let pointee_ty = pointee_type(base_ty).expect("Deref of non-pointer"); let pointee_ty = pointee_type(base_ty).expect("Deref of non-pointer");
println!("{:?}", pointee_ty);
let ptr = try!(self.memory.read_ptr(base_ptr)); let ptr = try!(self.memory.read_ptr(base_ptr));
let extra = match pointee_ty.sty { let extra = match pointee_ty.sty {
ty::TySlice(_) => { ty::TySlice(_) => {