Refine the Dwarf writer timers so that they measure exception writing and debug
[llvm/msp430.git] / test / LLVMC / NoActions.td
blob43fd0079eee2d47b20bebd48c75a85ff23655e2d
1 // Check that tools without associated actions are accepted.
2 // RUN: tblgen -I $srcroot/include --gen-llvmc %s | grep dummy_tool
4 include "llvm/CompilerDriver/Common.td"
6 def dummy_tool : Tool<[
7 (cmd_line "dummy_cmd"),
8 (in_language "dummy"),
9 (out_language "dummy")
10 ]>;
12 def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;