llvm-6502/test/LLVMC/Alias.td
Mikhail Glushenkov d9a7316f9a llvmc: Make syntax more consistent.
CompilationGraph and LanguageMap definitions do not use special syntax anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111862 91177308-0d34-0410-b5e6-96231b3b80d8
2010-08-23 23:21:23 +00:00

25 lines
592 B
TableGen

// 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<[(edge "root", "dummy_tool")]>;