mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
e4ac23a0ff
Checks that the code generated by 'tblgen --emit-llvmc' can be actually compiled. Also fixes two bugs found in this way: - forward_transformed_value didn't work with non-list arguments - cl::ZeroOrOne is now called cl::Optional git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91404 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
476 B
TableGen
18 lines
476 B
TableGen
// Check the fix for PR4157.
|
|
// http://llvm.org/bugs/show_bug.cgi?id=4157
|
|
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
|
// RUN: not grep {)));} %t
|
|
// RUN: %compile_cxx -fexceptions -x c++ %t
|
|
|
|
include "llvm/CompilerDriver/Common.td"
|
|
|
|
def dummy_tool : Tool<[
|
|
(cmd_line "gcc -o $OUTFILE $INFILE $ENV(FOO)/bar"),
|
|
(in_language "dummy"),
|
|
(out_language "dummy")
|
|
]>;
|
|
|
|
def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
|
|
|
|
def Graph : CompilationGraph<[]>;
|