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

Evan Cheng evan.cheng at apple.com
Tue Jul 18 17:24:55 PDT 2006



Changes in directory llvm/lib/Target:

Target.td updated: 1.84 -> 1.85
---
Log message:

Add code size to target instruction use it as the 3rd isel sorting tie-breaker.

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

 Target.td |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.84 llvm/lib/Target/Target.td:1.85
--- llvm/lib/Target/Target.td:1.84	Thu May 18 15:44:26 2006
+++ llvm/lib/Target/Target.td	Tue Jul 18 19:24:41 2006
@@ -147,6 +147,9 @@
   // code.
   list<Predicate> Predicates = [];
 
+  // Code size.
+  int CodeSize = 0;
+
   // Added complexity passed onto matching pattern.
   int AddedComplexity  = 0;
 






More information about the llvm-commits mailing list