2009-12-15 04:04:02 +01:00
|
|
|
// Check that a hook can be given $INFILE as an argument.
|
|
|
|
// 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-01-27 11:08:08 +01:00
|
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
2009-12-15 04:04:02 +01:00
|
|
|
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
|
|
|
|
def dummy_tool : Tool<[
|
2009-12-15 08:21:14 +01:00
|
|
|
// CHECK: Hook(inFile.c_str())
|
2009-12-15 04:04:02 +01:00
|
|
|
(cmd_line "$CALL(Hook, '$INFILE')/path $INFILE"),
|
|
|
|
(in_language "dummy"),
|
|
|
|
(out_language "dummy")
|
|
|
|
]>;
|
|
|
|
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|