Home
last modified time | relevance | path

Searched refs:LLCArgs (Results 1 – 1 of 1) sorted by relevance

/external/llvm/tools/bugpoint/
DToolRunner.cpp470 std::vector<const char *> LLCArgs; in OutputCode() local
471 LLCArgs.push_back(LLCPath.c_str()); in OutputCode()
475 LLCArgs.push_back(ToolArgs[i].c_str()); in OutputCode()
477 LLCArgs.push_back("-o"); in OutputCode()
478 LLCArgs.push_back(OutputAsmFile.c_str()); // Output to the Asm file in OutputCode()
479 LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode in OutputCode()
482 LLCArgs.push_back("-filetype=obj"); in OutputCode()
484 LLCArgs.push_back (nullptr); in OutputCode()
489 for (unsigned i = 0, e = LLCArgs.size()-1; i != e; ++i) in OutputCode()
490 errs() << " " << LLCArgs[i]; in OutputCode()
[all …]