mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
83ced6c29a
don't care about leaks from tblgen, and I assume we don't care about valgrind errors in llvm-gcc/g++. llvm-svn: 99115
22 lines
626 B
TableGen
22 lines
626 B
TableGen
// Check the fix for PR4159.
|
|
// http://llvm.org/bugs/show_bug.cgi?id=4159
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: FileCheck -input-file %t %s
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
// XFAIL: vg_leak
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def OptList : OptionList<[(parameter_option "dummy", (extern))]>;
|
|
|
|
def dummy_tool : Tool<[
|
|
(command "dummy_cmd"),
|
|
(in_language "dummy"),
|
|
(out_language "dummy"),
|
|
(actions (case
|
|
// CHECK: "unique_name"));
|
|
(not_empty "dummy"), (forward_as "dummy", "unique_name")))
|
|
]>;
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|