Rewrite tests to not use Tcl substitution.
[oota-llvm.git] / test / LLVMC / NoActions.td
1 // Check that tools without associated actions are accepted.
2 // RUN: tblgen -I %p/../../include --gen-llvmc %s | grep dummy_tool
3
4 include "llvm/CompilerDriver/Common.td"
5
6 def dummy_tool : Tool<[
7 (cmd_line "dummy_cmd"),
8 (in_language "dummy"),
9 (out_language "dummy")
10 ]>;
11
12 def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;