summaryrefslogtreecommitdiff
path: root/test/LLVMC/OutputSuffixHook.td
blob: 1f5ecd1237f3d45f605fc54910635cc516f11912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Check that hooks can be invoked from 'output_suffix'.
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
// RUN: FileCheck -input-file %t %s
// RUN: %compile_cxx %t
// XFAIL: vg_leak

include "llvm/CompilerDriver/Common.td"

// CHECK: std::string MyHook()

def OptList : OptionList<[
(switch_option "dummy1", (help "none"))
]>;

def dummy_tool : Tool<[
(command "dummy_cmd"),
(in_language "dummy_lang"),
(out_language "dummy_lang"),
(actions (case
         // CHECK: hooks::MyHook()
         (switch_on "dummy1"), (output_suffix "$CALL(MyHook)")))
]>;

def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;