add a new bit.
authorChris Lattner <sabre@nondot.org>
Mon, 7 Jan 2008 23:16:55 +0000 (23:16 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 7 Jan 2008 23:16:55 +0000 (23:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45726 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Target.td

index 64a710bb55cd4df879a317a7e0339ef9b92c7b39..766966f5507078cb62f6b7e8f4262b653214e108 100644 (file)
@@ -190,7 +190,8 @@ class Instruction {
   bit isBarrier    = 0;     // Can control flow fall through this instruction?
   bit isCall       = 0;     // Is this instruction a call instruction?
   bit isSimpleLoad = 0;     // Is this just a load instruction?
-  bit mayStore     = 0;     // Can this instruction modify memory?
+  bit mayLoad      = 0;     // Is it possible for this inst to read memory?
+  bit mayStore     = 0;     // Is it possible for this inst to write memory?
   bit isImplicitDef = 0;    // Is this instruction an implicit def instruction?
   bit isTwoAddress = 0;     // Is this a two address instruction?
   bit isConvertibleToThreeAddress = 0;  // Can this 2-addr instruction promote?