[llvm-commits] CVS: llvm/lib/VMCore/Instruction.cpp
Reid Spencer
reid at x10sys.com
Mon Feb 19 11:00:46 PST 2007
Changes in directory llvm/lib/VMCore:
Instruction.cpp updated: 1.67 -> 1.68
---
Log message:
Add a FIXME for unwritten code.
---
Diffs of the changes: (+2 -0)
Instruction.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/VMCore/Instruction.cpp
diff -u llvm/lib/VMCore/Instruction.cpp:1.67 llvm/lib/VMCore/Instruction.cpp:1.68
--- llvm/lib/VMCore/Instruction.cpp:1.67 Thu Feb 15 20:25:55 2007
+++ llvm/lib/VMCore/Instruction.cpp Mon Feb 19 13:00:29 2007
@@ -239,6 +239,8 @@
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:
More information about the llvm-commits
mailing list