[llvm-commits] [llvm] r50727 - /llvm/trunk/tools/llvmc2/ExampleWithOpt.td

Mikhail Glushenkov foldr at codedgers.com
Tue May 6 09:37:12 PDT 2008


Author: foldr
Date: Tue May  6 11:37:12 2008
New Revision: 50727

URL: http://llvm.org/viewvc/llvm-project?rev=50727&view=rev
Log:
Remove ExampleWithOpt.td: this file was merged with Example.td.

Removed:
    llvm/trunk/tools/llvmc2/ExampleWithOpt.td

Removed: llvm/trunk/tools/llvmc2/ExampleWithOpt.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc2/ExampleWithOpt.td?rev=50726&view=auto

==============================================================================
--- llvm/trunk/tools/llvmc2/ExampleWithOpt.td (original)
+++ llvm/trunk/tools/llvmc2/ExampleWithOpt.td (removed)
@@ -1,30 +0,0 @@
-//===- ExampleWithOpt.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<root, llvm_gcc_c>,
-    Edge<root, llvm_gcc_assembler>,
-    Edge<root, llvm_gcc_cpp>,
-    Edge<root, llvm_as>,
-    Edge<llvm_gcc_c, opt>,
-    Edge<llvm_gcc_cpp, opt>,
-    Edge<llvm_as, opt>,
-    Edge<opt, llc>,
-    Edge<llc, llvm_gcc_assembler>,
-    Edge<llvm_gcc_assembler, llvm_gcc_linker>
-    ]>;





More information about the llvm-commits mailing list