summaryrefslogtreecommitdiff
path: root/test/LLVMC/MultiValuedOption.td
blob: 08c753380d47578bce2c806e3616ff57036205c2 (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 multivalued options work.
// The dummy tool and graph are required to silence warnings.
// 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"

def OptList : OptionList<[
    // CHECK: cl::multi_val(2)
    (prefix_list_option "foo", (multi_val 2)),
    (parameter_list_option "baz", (multi_val 2))]>;

def dummy_tool : Tool<[
(command "dummy_cmd"),
(in_language "dummy"),
(out_language "dummy"),
(actions (case
         (not_empty "foo"), (forward_as "foo", "bar"),
         (not_empty "baz"), (forward "baz")))
]>;

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