Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp446 std::vector<StringRef> LLCArgs; in OutputCode() local
447 LLCArgs.push_back(LLCPath); in OutputCode()
451 LLCArgs.push_back(ToolArgs[i]); in OutputCode()
453 LLCArgs.push_back("-o"); in OutputCode()
454 LLCArgs.push_back(OutputAsmFile); // Output to the Asm file in OutputCode()
455 LLCArgs.push_back(Bitcode); // This is the input bitcode in OutputCode()
458 LLCArgs.push_back("-filetype=obj"); in OutputCode()
463 for (unsigned i = 0, e = LLCArgs.size(); i != e; ++i) errs() in OutputCode()
464 << " " << LLCArgs[i]; in OutputCode()
466 if (RunProgramWithTimeout(LLCPath, LLCArgs, "", "", "", Timeout, MemoryLimit)) in OutputCode()
[all …]