• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Check that forward_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
8include "llvm/CompilerDriver/Common.td"
9
10def OptList : OptionList<[(parameter_option "a", (help "dummy")),
11                          (prefix_list_option "b", (help "dummy"))]>;
12
13def dummy_tool : Tool<[
14(command "dummy_cmd"),
15(in_language "dummy"),
16(out_language "dummy"),
17(actions (case
18         // CHECK: , autogenerated::Parameter_a));
19         (not_empty "a"), (forward_value "a"),
20         // CHECK: B = autogenerated::List_b.begin()
21         (not_empty "b"), (forward_value "b")))
22]>;
23
24def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;
25