aboutsummaryrefslogtreecommitdiff
path: root/tools/llvmc2/examples/Simple.td
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvmc2/examples/Simple.td')
-rw-r--r--tools/llvmc2/examples/Simple.td17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/llvmc2/examples/Simple.td b/tools/llvmc2/examples/Simple.td
deleted file mode 100644
index 4885301042..0000000000
--- a/tools/llvmc2/examples/Simple.td
+++ /dev/null
@@ -1,17 +0,0 @@
-// A simple wrapper for gcc.
-// To compile, use this command:
-// TOFIX
-
-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>]>;