Support for parallel compilation (/MP) when using the VS IDE.
[oota-llvm.git] / test / LLVMC / ForwardTransformedValue.td
1 // Check that forward_transformed_value works.
2 // The dummy tool and graph are required to silence warnings.
3 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
4 // RUN: FileCheck -input-file %t %s
5 // RUN: %compile_cxx %t
6 // XFAIL: vg_leak
7
8 include "llvm/CompilerDriver/Common.td"
9
10 def OptList : OptionList<[(parameter_option "a", (help "dummy")),
11                           (prefix_list_option "b", (help "dummy"))]>;
12
13 // CHECK: std::string HookA
14 // CHECK: std::string HookB
15
16 def dummy_tool : Tool<[
17 (command "dummy_cmd"),
18 (in_language "dummy"),
19 (out_language "dummy"),
20 (actions (case
21          // CHECK: HookA(autogenerated::Parameter_a
22          (not_empty "a"), (forward_transformed_value "a", "HookA"),
23          // CHECK: HookB(autogenerated::List_b
24          (not_empty "b"), (forward_transformed_value "b", "HookB")))
25 ]>;
26
27 def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;