From 910fd575335f859549a8d377d5b05b4d3eb9b1db Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Fri, 9 May 2008 19:11:28 +0000 Subject: Rename Example.td to Graph.td. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50910 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvmc2/Example.td | 47 ----------------------------------------------- tools/llvmc2/Graph.td | 47 +++++++++++++++++++++++++++++++++++++++++++++++ tools/llvmc2/Makefile | 2 +- 3 files changed, 48 insertions(+), 48 deletions(-) delete mode 100644 tools/llvmc2/Example.td create mode 100644 tools/llvmc2/Graph.td (limited to 'tools/llvmc2') diff --git a/tools/llvmc2/Example.td b/tools/llvmc2/Example.td deleted file mode 100644 index 6fb998b28b..0000000000 --- a/tools/llvmc2/Example.td +++ /dev/null @@ -1,47 +0,0 @@ -//===- Example.td - LLVMCC toolchain descriptions ---------*- tablegen -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file contains compilation graph description used by llvmcc. -// -//===----------------------------------------------------------------------===// - -include "Common.td" -include "Tools.td" - -// Toolchains - -def CompilationGraph : CompilationGraph<[ - Edge, - Edge, - Edge, - Edge, - - Edge, - Edge, - Edge, - - OptionalEdge, - OptionalEdge, - OptionalEdge, - Edge, - - Edge, - Edge, - OptionalEdge, - - - Edge, - OptionalEdge - ]>; diff --git a/tools/llvmc2/Graph.td b/tools/llvmc2/Graph.td new file mode 100644 index 0000000000..6fb998b28b --- /dev/null +++ b/tools/llvmc2/Graph.td @@ -0,0 +1,47 @@ +//===- Example.td - LLVMCC toolchain descriptions ---------*- tablegen -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains compilation graph description used by llvmcc. +// +//===----------------------------------------------------------------------===// + +include "Common.td" +include "Tools.td" + +// Toolchains + +def CompilationGraph : CompilationGraph<[ + Edge, + Edge, + Edge, + Edge, + + Edge, + Edge, + Edge, + + OptionalEdge, + OptionalEdge, + OptionalEdge, + Edge, + + Edge, + Edge, + OptionalEdge, + + + Edge, + OptionalEdge + ]>; diff --git a/tools/llvmc2/Makefile b/tools/llvmc2/Makefile index 648ba07919..d1b85a63d0 100644 --- a/tools/llvmc2/Makefile +++ b/tools/llvmc2/Makefile @@ -14,7 +14,7 @@ REQUIRES_EH := 1 include $(LEVEL)/Makefile.common -TOOLS_SOURCE=Example.td Tools.td Common.td +TOOLS_SOURCE=Graph.td Tools.td Common.td # TOFIX: integrate this part into Makefile.rules? # The degree of horrorshowness in that file is too much for me atm. -- cgit v1.2.3