2009-12-07 18:03:05 +01:00
|
|
|
// Check that forward_transformed_value works.
|
|
|
|
// The dummy tool and graph are required to silence warnings.
|
|
|
|
// 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-07 18:03:05 +01:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
2010-08-15 09:07:24 +02:00
|
|
|
def OptList : OptionList<[(parameter_option "a", (help "dummy")),
|
|
|
|
(prefix_list_option "b", (help "dummy"))]>;
|
2009-12-07 18:03:05 +01:00
|
|
|
|
2009-12-15 08:21:14 +01:00
|
|
|
// CHECK: std::string HookA
|
|
|
|
// CHECK: std::string HookB
|
|
|
|
|
2009-12-07 18:03:05 +01:00
|
|
|
def dummy_tool : Tool<[
|
2010-02-23 10:04:51 +01:00
|
|
|
(command "dummy_cmd"),
|
2009-12-07 18:03:05 +01:00
|
|
|
(in_language "dummy"),
|
|
|
|
(out_language "dummy"),
|
|
|
|
(actions (case
|
2010-08-20 15:03:33 +02:00
|
|
|
// CHECK: HookA(autogenerated::Parameter_a
|
2009-12-07 18:03:05 +01:00
|
|
|
(not_empty "a"), (forward_transformed_value "a", "HookA"),
|
2010-08-20 15:03:33 +02:00
|
|
|
// CHECK: HookB(autogenerated::List_b
|
2009-12-07 18:03:05 +01:00
|
|
|
(not_empty "b"), (forward_transformed_value "b", "HookB")))
|
|
|
|
]>;
|
|
|
|
|
2010-08-24 01:21:23 +02:00
|
|
|
def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;
|