From 76985f1e2d56fda022edee360b0deb5fdb7fb9f7 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 25 Jan 2019 08:59:12 +0100 Subject: [PATCH] remove outdated comment --- src/fn_call.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/fn_call.rs b/src/fn_call.rs index 0f5429518239..720737b53965 100644 --- a/src/fn_call.rs +++ b/src/fn_call.rs @@ -73,10 +73,6 @@ pub trait EvalContextExt<'a, 'mir, 'tcx: 'a+'mir>: crate::MiriEvalContextExt<'a, let tcx = &{this.tcx.tcx}; - // All these functions take raw pointers, so if we access memory directly - // (as opposed to through a place), we have to remember to erase any tag - // that might still hang around! - match &link_name[..] { "malloc" => { let size = this.read_scalar(args[0])?.to_usize(this)?;