1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Add a FIXME for unwritten code.

llvm-svn: 34422
This commit is contained in:
Reid Spencer 2007-02-19 19:00:29 +00:00
parent eea9643d46
commit 9ada0ff0ed

View File

@ -239,6 +239,8 @@ bool Instruction::mayWriteToMemory() const {
case Instruction::Call:
if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(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: