Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp447 LLCArgs.push_back(LLCPath); in OutputCode()
466 if (RunProgramWithTimeout(LLCPath, LLCArgs, "", "", "", Timeout, MemoryLimit)) in OutputCode()
467 return ProcessFailure(LLCPath, LLCArgs, Timeout, MemoryLimit); in OutputCode()
512 ErrorOr<std::string> LLCPath = in createLLC() local
514 if (!LLCPath) { in createLLC()
515 Message = LLCPath.getError().message() + "\n"; in createLLC()
524 Message = "Found llc: " + *LLCPath + "\n"; in createLLC()
525 return new LLC(*LLCPath, cc, Args, UseIntegratedAssembler); in createLLC()
H A DToolRunner.h147 std::string LLCPath; // The path to the LLC executable. variable
155 : LLCPath(llcPath), cc(cc), in LLC()