2009-12-14 05:06:38 +01:00
|
|
|
// Check that (init true/false) and (init "str") work.
|
|
|
|
// 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-08-30 16:49:00 +02:00
|
|
|
// RUN: %compile_cxx %t
|
2010-03-21 09:12:46 +01:00
|
|
|
// XFAIL: vg_leak
|
2009-12-14 05:06:38 +01:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
|
|
|
def OptList : OptionList<[
|
2009-12-15 08:21:14 +01:00
|
|
|
// CHECK: cl::init(true)
|
2009-12-14 05:06:38 +01:00
|
|
|
(switch_option "dummy1", (help "none"), (init true)),
|
2009-12-15 08:21:14 +01:00
|
|
|
// CHECK: cl::init("some-string")
|
2009-12-14 05:06:38 +01:00
|
|
|
(parameter_option "dummy2", (help "none"), (init "some-string"))
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def dummy_tool : Tool<[
|
2010-02-23 10:04:51 +01:00
|
|
|
(command "dummy_cmd"),
|
2009-12-14 05:06:38 +01:00
|
|
|
(in_language "dummy_lang"),
|
|
|
|
(out_language "dummy_lang"),
|
|
|
|
(actions (case
|
|
|
|
(switch_on "dummy1"), (forward "dummy1"),
|
|
|
|
(not_empty "dummy2"), (forward "dummy2")))
|
|
|
|
]>;
|
|
|
|
|
2010-08-24 01:21:23 +02:00
|
|
|
def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;
|