diff options
author | Chris Lattner <sabre@nondot.org> | 2008-05-08 21:47:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-05-08 21:47:43 +0000 |
commit | c2e108430ff1530a0e32555c1475c470ffdde0f2 (patch) | |
tree | 8c03f9ba6dfbc46a1ba88ff242d4701da87dc2ca /llvm/lib/VMCore/Instruction.cpp | |
parent | e75ac17eaa437d5ea8ee03d515f690f0c2083151 (diff) | |
download | bcm5719-llvm-c2e108430ff1530a0e32555c1475c470ffdde0f2.tar.gz bcm5719-llvm-c2e108430ff1530a0e32555c1475c470ffdde0f2.zip |
store can't read from memory.
llvm-svn: 50869
Diffstat (limited to 'llvm/lib/VMCore/Instruction.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instruction.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp index 345fd1dd94e..a446cc20a93 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/lib/VMCore/Instruction.cpp @@ -225,7 +225,6 @@ bool Instruction::mayReadFromMemory() const { switch (getOpcode()) { default: return false; case Instruction::Free: - case Instruction::Store: case Instruction::VAArg: return true; case Instruction::Call: |