mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
3cd86bc569
It causes g++ to complain: unrecognized option '-Qunused-arguments' llvm-svn: 94670
25 lines
655 B
TableGen
25 lines
655 B
TableGen
// Check that hooks can be invoked from 'output_suffix'.
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: FileCheck -input-file %t %s
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
// XFAIL: *
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
// CHECK: std::string MyHook()
|
|
|
|
def OptList : OptionList<[
|
|
(switch_option "dummy1", (help "none"))
|
|
]>;
|
|
|
|
def dummy_tool : Tool<[
|
|
(cmd_line "dummy_cmd $INFILE"),
|
|
(in_language "dummy_lang"),
|
|
(out_language "dummy_lang"),
|
|
(actions (case
|
|
// CHECK: hooks::MyHook()
|
|
(switch_on "dummy1"), (output_suffix "$CALL(MyHook)")))
|
|
]>;
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|