mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix incorrect code generation with ENV.
See PR4157 for details. Patch by Martin Nowack! llvm-svn: 70973
This commit is contained in:
parent
a96ef42a06
commit
2b4696b585
16
test/LLVMC/EnvParentheses.td
Normal file
16
test/LLVMC/EnvParentheses.td
Normal file
@ -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<[]>;
|
@ -1265,7 +1265,6 @@ StrVector::const_iterator SubstituteSpecialCommands
|
||||
assert(Leftover.at(0) == ')');
|
||||
if (Leftover.size() != 1)
|
||||
O << " + std::string(\"" << (Leftover.c_str() + 1) << "\")";
|
||||
O << ')';
|
||||
|
||||
return Pos;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user