From: Reid Spencer Date: Mon, 19 Feb 2007 19:00:29 +0000 (+0000) Subject: Add a FIXME for unwritten code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c552ff2825d7d7c8128ae845d3e1512649780f91;p=oota-llvm.git Add a FIXME for unwritten code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34422 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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: