forked from OSchip/llvm-project
[bugpoint] Don't ignore arg in -compile-commad="tool arg"
Args is an output parameter of the function lexCommand but the reference operator was missed. llvm-svn: 203343
This commit is contained in:
parent
59be68f05f
commit
5f9eb0af72
|
@ -406,7 +406,7 @@ int CustomExecutor::ExecuteProgram(const std::string &Bitcode,
|
|||
// code borrowed from:
|
||||
// http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html
|
||||
static void lexCommand(std::string &Message, const std::string &CommandLine,
|
||||
std::string &CmdPath, std::vector<std::string> Args) {
|
||||
std::string &CmdPath, std::vector<std::string> &Args) {
|
||||
|
||||
std::string Command = "";
|
||||
std::string delimiters = " ";
|
||||
|
|
Loading…
Reference in New Issue