[llvm-commits] CVS: llvm/lib/Target/Target.td

Evan Cheng evan.cheng at apple.com
Sun Mar 18 23:22:28 PDT 2007



Changes in directory llvm/lib/Target:

Target.td updated: 1.94 -> 1.95
---
Log message:

Added isReMaterializable.

---
Diffs of the changes:  (+1 -0)

 Target.td |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.94 llvm/lib/Target/Target.td:1.95
--- llvm/lib/Target/Target.td:1.94	Tue Feb 27 00:59:52 2007
+++ llvm/lib/Target/Target.td	Mon Mar 19 01:22:07 2007
@@ -165,6 +165,7 @@
   bit isConvertibleToThreeAddress = 0;  // Can this 2-addr instruction promote?
   bit isCommutable = 0;     // Is this 3 operand instruction commutable?
   bit isTerminator = 0;     // Is this part of the terminator for a basic block?
+  bit isReMaterializable = 0; // Is this instruction re-materializable?
   bit hasDelaySlot = 0;     // Does this instruction have an delay slot?
   bit usesCustomDAGSchedInserter = 0; // Pseudo instr needing special help.
   bit hasCtrlDep   = 0;     // Does this instruction r/w ctrl-flow chains?






More information about the llvm-commits mailing list