From: Mikhail Glushenkov Date: Fri, 9 May 2008 19:11:28 +0000 (+0000) Subject: Rename Example.td to Graph.td. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=910fd575335f859549a8d377d5b05b4d3eb9b1db;p=oota-llvm.git Rename Example.td to Graph.td. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50910 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc2/Example.td b/tools/llvmc2/Example.td deleted file mode 100644 index 6fb998b28b2..00000000000 --- 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 00000000000..6fb998b28b2 --- /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 648ba079198..d1b85a63d04 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.