From 38818b072f2e914aeb28fefc38d19eca0268f873 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 8 May 2008 21:47:43 +0000 Subject: [PATCH] store can't read from memory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50869 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Instruction.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 345fd1dd94e..a446cc20a93 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: -- 2.34.1