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: