According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / LLVMC / Alias.td
blob5d37889304bdcd8c1622c0f24dda82ea083ce784
1 // Test alias generation.
2 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
3 // RUN: FileCheck -input-file %t %s
4 // RUN: %compile_cxx %t
5 // XFAIL: vg_leak
7 include "llvm/CompilerDriver/Common.td"
9 def OptList : OptionList<[
11 (switch_option "dummy1", (help "none")),
12 // CHECK: cl::alias Alias_dummy2
13 (alias_option "dummy2", "dummy1")
14 ]>;
16 def dummy_tool : Tool<[
17 (command "dummy_cmd"),
18 (in_language "dummy_lang"),
19 (out_language "dummy_lang"),
20 (actions (case
21          (switch_on "dummy1"), (forward "dummy1")))
22 ]>;
24 def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;