mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
0d08db0345
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50724 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
902 B
TableGen
31 lines
902 B
TableGen
//===- 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>
|
|
]>;
|