mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
17 lines
432 B
TableGen
17 lines
432 B
TableGen
|
// Check the fix for PR4157.
|
||
|
// http://llvm.org/bugs/show_bug.cgi?id=4157
|
||
|
// RUN: tblgen -I $srcroot/include --gen-llvmc %s -o %t
|
||
|
// RUN: not grep {)));} %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<[]>;
|