1 // Check the fix for PR4159.
2 // http://llvm.org/bugs/show_bug.cgi?id=4159
3 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
4 // RUN: FileCheck -input-file %t %s
5 // RUN: %compile_cxx %t
8 include "llvm/CompilerDriver/Common.td"
10 def OptList : OptionList<[(parameter_option "dummy", (help "dummmy"))]>;
12 def dummy_tool : Tool<[
13 (command "dummy_cmd"),
14 (in_language "dummy"),
15 (out_language "dummy"),
17 // CHECK: "unique_name"));
18 (not_empty "dummy"), (forward_as "dummy", "unique_name")))
21 def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;