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