diff options
Diffstat (limited to 'test/LLVMC/EnvParentheses.td')
-rw-r--r-- | test/LLVMC/EnvParentheses.td | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/LLVMC/EnvParentheses.td b/test/LLVMC/EnvParentheses.td new file mode 100644 index 0000000..cf2a0e3 --- /dev/null +++ b/test/LLVMC/EnvParentheses.td @@ -0,0 +1,16 @@ +// 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<[]>; |