mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
cd662e3540
The CMake build didn't define TEST_COMPILE_CXX_CMD. The tests assumed gcc. llvm-svn: 112480
17 lines
444 B
TableGen
17 lines
444 B
TableGen
// Check that tools without associated actions are accepted.
|
|
// 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"
|
|
|
|
// CHECK: class dummy_tool : public Tool {
|
|
def dummy_tool : Tool<[
|
|
(command "dummy_cmd"),
|
|
(in_language "dummy"),
|
|
(out_language "dummy")
|
|
]>;
|
|
|
|
def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;
|