From 43313d574394de6b9be6bbf0eb782c9cef56e69f Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Thu, 9 Jan 2020 14:46:32 +0100 Subject: [PATCH] Remove an outdated comment --- src/librustc_mir/interpret/operand.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustc_mir/interpret/operand.rs b/src/librustc_mir/interpret/operand.rs index 2cb574bc681b1..b37eff3f40626 100644 --- a/src/librustc_mir/interpret/operand.rs +++ b/src/librustc_mir/interpret/operand.rs @@ -467,7 +467,6 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { local => { // Do not use the layout passed in as argument if the base we are looking at // here is not the entire place. - // FIXME use place_projection.is_empty() when is available let layout = if place.projection.is_empty() { layout } else { None }; self.access_local(self.frame(), local, layout)?