Searched defs:LLCArgs (Results 1 - 2 of 2) sorted by relevance

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

Completed in 112 milliseconds