summaryrefslogtreecommitdiff
path: root/test/LLVMC/HookWithInFile.td
blob: ed08b5321ccfb354deee13a9eaa7e0470d6ea5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Check that a hook can be given $INFILE as an argument.
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
// RUN: FileCheck -input-file %t %s
// RUN: %compile_cxx %t
// XFAIL: vg_leak

include "llvm/CompilerDriver/Common.td"

def dummy_tool : Tool<[
// CHECK: Hook(inFile.c_str())
(command "$CALL(Hook, '$INFILE')/path"),
(in_language "dummy"),
(out_language "dummy")
]>;

def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;