diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:37:12 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-06 16:37:12 +0000 |
commit | e74420ab24c6ecf631ffc5817efed4906ebfbfa3 (patch) | |
tree | ab3df301084a70bc8a3bdb8a913eca6cc641de27 /tools | |
parent | d752c3ffd84d2b16d736e01504a9d470863fb679 (diff) | |
download | external_llvm-e74420ab24c6ecf631ffc5817efed4906ebfbfa3.zip external_llvm-e74420ab24c6ecf631ffc5817efed4906ebfbfa3.tar.gz external_llvm-e74420ab24c6ecf631ffc5817efed4906ebfbfa3.tar.bz2 |
Remove ExampleWithOpt.td: this file was merged with Example.td.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc2/ExampleWithOpt.td | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/llvmc2/ExampleWithOpt.td b/tools/llvmc2/ExampleWithOpt.td deleted file mode 100644 index 64ee883..0000000 --- a/tools/llvmc2/ExampleWithOpt.td +++ /dev/null @@ -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> - ]>; |