[llvm-commits] CVS: llvm/lib/Target/Target.td
Vladimir Prus
ghost at cs.msu.su
Mon May 15 23:39:49 PDT 2006
Changes in directory llvm/lib/Target:
Target.td updated: 1.80 -> 1.81
---
Log message:
Replace "../whatever.td" with "whatever.td", so that out-of-tree backends
can just add lib/Target to TableGen includes.
---
Diffs of the changes: (+2 -2)
Target.td | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.80 llvm/lib/Target/Target.td:1.81
--- llvm/lib/Target/Target.td:1.80 Mon May 15 13:35:02 2006
+++ llvm/lib/Target/Target.td Tue May 16 01:39:36 2006
@@ -118,7 +118,7 @@
//===----------------------------------------------------------------------===//
// Pull in the common support for scheduling
//
-include "../TargetSchedule.td"
+include "TargetSchedule.td"
class Predicate; // Forward def
@@ -327,4 +327,4 @@
//===----------------------------------------------------------------------===//
// Pull in the common support for DAG isel generation
//
-include "../TargetSelectionDAG.td"
+include "TargetSelectionDAG.td"
More information about the llvm-commits
mailing list