1f5ecd1237f3d45f605fc54910635cc516f11912
[oota-llvm.git] / test / LLVMC / OutputSuffixHook.td
1 // Check that hooks can be invoked from 'output_suffix'.
2 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
3 // RUN: FileCheck -input-file %t %s
4 // RUN: %compile_cxx %t
5 // XFAIL: vg_leak
6
7 include "llvm/CompilerDriver/Common.td"
8
9 // CHECK: std::string MyHook()
10
11 def OptList : OptionList<[
12 (switch_option "dummy1", (help "none"))
13 ]>;
14
15 def dummy_tool : Tool<[
16 (command "dummy_cmd"),
17 (in_language "dummy_lang"),
18 (out_language "dummy_lang"),
19 (actions (case
20          // CHECK: hooks::MyHook()
21          (switch_on "dummy1"), (output_suffix "$CALL(MyHook)")))
22 ]>;
23
24 def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;