llvm-6502/test/LLVMC/EnvParentheses.td
2009-09-13 01:37:07 +00:00

17 lines
432 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
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<[]>;