Remove ExampleWithOpt.td: this file was merged with Example.td.

llvm-svn: 50727
This commit is contained in:
Mikhail Glushenkov 2008-05-06 16:37:12 +00:00
parent 251280ce0b
commit abd7cc7238
1 changed files with 0 additions and 30 deletions

View File

@ -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>
]>;