summaryrefslogtreecommitdiff
path: root/tools/llvmc2/examples/Simple.td
blob: d00132a07312cd5401be793269334cd8eec673f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// A simple wrapper for gcc.

include "Common.td"

def gcc : Tool<
[(in_language "c"),
 (out_language "executable"),
 (output_suffix "out"),
 (cmd_line "gcc $INFILE -o $OUTFILE"),
 (sink)
]>;

def LanguageMap : LanguageMap<[LangToSuffixes<"c", ["c"]>]>;

def CompilationGraph : CompilationGraph<[Edge<root, gcc>]>;