Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp440 std::vector<StringRef> LLCArgs; in OutputCode() local
441 LLCArgs.push_back(LLCPath); in OutputCode()
444 llvm::append_range(LLCArgs, ToolArgs); in OutputCode()
446 LLCArgs.push_back("-o"); in OutputCode()
447 LLCArgs.push_back(OutputAsmFile); // Output to the Asm file in OutputCode()
448 LLCArgs.push_back(Bitcode); // This is the input bitcode in OutputCode()
451 LLCArgs.push_back("-filetype=obj"); in OutputCode()
456 for (unsigned i = 0, e = LLCArgs.size(); i != e; ++i) errs() in OutputCode()
457 << " " << LLCArgs[i]; in OutputCode()
459 if (RunProgramWithTimeout(LLCPath, LLCArgs, "", "", "", Timeout, MemoryLimit)) in OutputCode()
[all …]