Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/tools/bugpoint/
DToolRunner.cpp455 std::vector<const char *> LLCArgs; in OutputCode() local
456 LLCArgs.push_back(LLCPath.c_str()); in OutputCode()
460 LLCArgs.push_back(ToolArgs[i].c_str()); in OutputCode()
462 LLCArgs.push_back("-o"); in OutputCode()
463 LLCArgs.push_back(OutputAsmFile.c_str()); // Output to the Asm file in OutputCode()
464 LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode in OutputCode()
467 LLCArgs.push_back("-filetype=obj"); in OutputCode()
469 LLCArgs.push_back (0); in OutputCode()
474 for (unsigned i = 0, e = LLCArgs.size()-1; i != e; ++i) in OutputCode()
475 errs() << " " << LLCArgs[i]; in OutputCode()
[all …]
/external/llvm/tools/bugpoint/
DToolRunner.cpp471 std::vector<const char *> LLCArgs; in OutputCode() local
472 LLCArgs.push_back(LLCPath.c_str()); in OutputCode()
476 LLCArgs.push_back(ToolArgs[i].c_str()); in OutputCode()
478 LLCArgs.push_back("-o"); in OutputCode()
479 LLCArgs.push_back(OutputAsmFile.c_str()); // Output to the Asm file in OutputCode()
480 LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode in OutputCode()
483 LLCArgs.push_back("-filetype=obj"); in OutputCode()
485 LLCArgs.push_back (nullptr); in OutputCode()
490 for (unsigned i = 0, e = LLCArgs.size()-1; i != e; ++i) in OutputCode()
491 errs() << " " << LLCArgs[i]; in OutputCode()
[all …]