about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-06-19 10:03:53 +0200
committerOliver Scherer <github35764891676564198441@oli-obk.de>2019-06-19 10:03:53 +0200
commit62af19b614267e949ed7a3da0be9ffa2a40de2fa (patch)
tree8916ae5813b4c0e7dff094df00de51633df2565c
parentfd426a6ae9b9470bcfee19c251d60b5a2c2c6048 (diff)
downloadrust-62af19b614267e949ed7a3da0be9ffa2a40de2fa.tar.gz
rust-62af19b614267e949ed7a3da0be9ffa2a40de2fa.zip
More FIXMEs
-rw-r--r--src/librustc_mir/interpret/memory.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_mir/interpret/memory.rs b/src/librustc_mir/interpret/memory.rs
index ff33dccdfea..f2a115f8f35 100644
--- a/src/librustc_mir/interpret/memory.rs
+++ b/src/librustc_mir/interpret/memory.rs
@@ -56,6 +56,7 @@ pub struct Memory<'mir, 'tcx, M: Machine<'mir, 'tcx>> {
     /// the wrong type), so we let the machine override this type.
     /// Either way, if the machine allows writing to a static, doing so will
     /// create a copy of the static allocation here.
+    // FIXME: this should not be public, but interning currently needs access to it
     pub(super) alloc_map: M::MemoryMap,
 
     /// To be able to compare pointers with NULL, and to check alignment for accesses