mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-01 18:12:49 +00:00
llvmc: Fix alias generation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111662 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8d18006cf2
commit
297514d155
24
test/LLVMC/Alias.td
Normal file
24
test/LLVMC/Alias.td
Normal 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">]>;
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user