From c552ff2825d7d7c8128ae845d3e1512649780f91 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 19 Feb 2007 19:00:29 +0000 Subject: [PATCH] Add a FIXME for unwritten code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34422 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Instruction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 48c73a08400..ffad11b1488 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -239,6 +239,8 @@ bool Instruction::mayWriteToMemory() const { case Instruction::Call: if (const IntrinsicInst *II = dyn_cast(this)) { // If the intrinsic doesn't write memory, it is safe. + // FIXME: this is obviously supposed to determine which intrinsics + // don't write to memory, but hasn't been implemented yet. } return true; case Instruction::Load: -- 2.34.1