[llvm-commits] [llvm] r50869 - /llvm/trunk/lib/VMCore/Instruction.cpp
Chris Lattner
sabre at nondot.org
Thu May 8 14:47:43 PDT 2008
Author: lattner
Date: Thu May 8 16:47:43 2008
New Revision: 50869
URL: http://llvm.org/viewvc/llvm-project?rev=50869&view=rev
Log:
store can't read from memory.
Modified:
llvm/trunk/lib/VMCore/Instruction.cpp
Modified: llvm/trunk/lib/VMCore/Instruction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instruction.cpp?rev=50869&r1=50868&r2=50869&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Instruction.cpp (original)
+++ llvm/trunk/lib/VMCore/Instruction.cpp Thu May 8 16:47:43 2008
@@ -225,7 +225,6 @@
switch (getOpcode()) {
default: return false;
case Instruction::Free:
- case Instruction::Store:
case Instruction::VAArg:
return true;
case Instruction::Call:
More information about the llvm-commits
mailing list