blob: d56f7f96358ba860b177db48abeebd9248b1b035 [file] [log] [blame]
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +00001//===- Example.td - LLVMCC toolchain descriptions ---------*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +000010// This file contains compilation graph description used by llvmcc.
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000011//
12//===----------------------------------------------------------------------===//
13
14include "Common.td"
15include "Tools.td"
16
17// Toolchains
18
Mikhail Glushenkov2cfd2232008-05-06 16:35:25 +000019def CompilationGraph : CompilationGraph<[
20 Edge<root, llvm_gcc_c>,
21 Edge<root, llvm_gcc_assembler>,
22 Edge<root, llvm_gcc_cpp>,
23 Edge<root, llvm_as>,
24 Edge<llvm_gcc_c, llc>,
25 Edge<llvm_gcc_cpp, llc>,
26 Edge<llvm_as, llc>,
27 Edge<llc, llvm_gcc_assembler>,
28 Edge<llvm_gcc_assembler, llvm_gcc_linker>
Anton Korobeynikove9ffb5b2008-03-23 08:57:20 +000029 ]>;