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