mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
bc15f242d5
It causes g++ to complain: unrecognized option '-Qunused-arguments' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94670 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
750 B
TableGen
25 lines
750 B
TableGen
// Check that (init true/false) and (init "str") work.
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: FileCheck -input-file %t %s
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def OptList : OptionList<[
|
|
// CHECK: cl::init(true)
|
|
(switch_option "dummy1", (help "none"), (init true)),
|
|
// CHECK: cl::init("some-string")
|
|
(parameter_option "dummy2", (help "none"), (init "some-string"))
|
|
]>;
|
|
|
|
def dummy_tool : Tool<[
|
|
(cmd_line "dummy_cmd $INFILE"),
|
|
(in_language "dummy_lang"),
|
|
(out_language "dummy_lang"),
|
|
(actions (case
|
|
(switch_on "dummy1"), (forward "dummy1"),
|
|
(not_empty "dummy2"), (forward "dummy2")))
|
|
]>;
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|