pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / LLVMC / NoActions.td
blob298b6e23b59a3c5f7f309beb498d24d9e1dcf8b6
1 // Check that tools without associated actions are accepted.
2 // RUN: tblgen -I %p/../../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">]>;