llvmc: Fix alias generation.

llvm-svn: 111662
This commit is contained in:
Mikhail Glushenkov 2010-08-20 18:16:26 +00:00
parent 12cbe696e4
commit 18277eafb0
2 changed files with 25 additions and 1 deletions

24
llvm/test/LLVMC/Alias.td Normal file
View File

@ -0,0 +1,24 @@
// Test alias generation.
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
// RUN: FileCheck -input-file %t %s
// RUN: %compile_cxx -x c++ %t
// XFAIL: vg_leak
include "llvm/CompilerDriver/Common.td"
def OptList : OptionList<[
(switch_option "dummy1", (help "none")),
// CHECK: cl::alias Alias_dummy2
(alias_option "dummy2", "dummy1")
]>;
def dummy_tool : Tool<[
(command "dummy_cmd"),
(in_language "dummy_lang"),
(out_language "dummy_lang"),
(actions (case
(switch_on "dummy1"), (forward "dummy1")))
]>;
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;

View File

@ -2427,7 +2427,7 @@ void EmitOptionDefinitions (const OptionDescriptions& descs,
const OptionDescription& val = *B;
O << val.GenTypeDeclaration() << ' '
<< val.GenVariableName()
<< val.GenPlainVariableName()
<< "(\"" << val.Name << '\"';
const OptionDescription& D = descs.FindOption(val.Help);