2008-12-08 00:41:50 +08:00
|
|
|
// Check that tools without associated actions are accepted.
|
2009-12-15 11:04:52 +08:00
|
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
2009-12-15 15:21:14 +08:00
|
|
|
// RUN: FileCheck -input-file %t %s
|
2010-01-27 18:08:08 +08:00
|
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
2010-03-21 16:12:46 +08:00
|
|
|
// XFAIL: vg_leak
|
2008-12-08 00:41:50 +08:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
2009-12-15 15:21:14 +08:00
|
|
|
// CHECK: class dummy_tool : public Tool {
|
2008-12-08 00:41:50 +08:00
|
|
|
def dummy_tool : Tool<[
|
2010-02-23 17:04:51 +08:00
|
|
|
(command "dummy_cmd"),
|
2008-12-08 00:41:50 +08:00
|
|
|
(in_language "dummy"),
|
|
|
|
(out_language "dummy")
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|