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 | 38818b072f2e914aeb28fefc38d19eca0268f873 (patch) | |
tree | 80900a5e71b4465a56c3da2fba644a3e290facf7 | |
parent | 194a78f149953f21823c34a7540070cc1ecc50f8 (diff) | |
download | external_llvm-38818b072f2e914aeb28fefc38d19eca0268f873.zip external_llvm-38818b072f2e914aeb28fefc38d19eca0268f873.tar.gz external_llvm-38818b072f2e914aeb28fefc38d19eca0268f873.tar.bz2 |
store can't read from memory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50869 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Instruction.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 345fd1d..a446cc2 100644 --- a/lib/VMCore/Instruction.cpp +++ b/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: |