2009-01-28 04:47:20 +01:00
|
|
|
// Check that multivalued options work.
|
|
|
|
// The dummy tool and graph are required to silence warnings.
|
2009-09-13 03:37:07 +02:00
|
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
2009-12-15 08:21:14 +01:00
|
|
|
// RUN: FileCheck -input-file %t %s
|
2010-01-27 11:08:08 +01:00
|
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
2010-03-21 09:12:46 +01:00
|
|
|
// XFAIL: vg_leak
|
2009-01-28 04:47:20 +01:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
|
|
|
def OptList : OptionList<[
|
2009-12-15 08:21:14 +01:00
|
|
|
// CHECK: cl::multi_val(2)
|
2009-01-28 04:47:20 +01:00
|
|
|
(prefix_list_option "foo", (multi_val 2)),
|
|
|
|
(parameter_list_option "baz", (multi_val 2), (extern))]>;
|
|
|
|
|
|
|
|
def dummy_tool : Tool<[
|
2010-02-23 10:04:51 +01:00
|
|
|
(command "dummy_cmd"),
|
2009-01-28 04:47:20 +01:00
|
|
|
(in_language "dummy"),
|
|
|
|
(out_language "dummy"),
|
|
|
|
(actions (case
|
|
|
|
(not_empty "foo"), (forward_as "foo", "bar"),
|
|
|
|
(not_empty "baz"), (forward "baz")))
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|