Lines Matching refs:LLCArgs
470 std::vector<const char *> LLCArgs; in OutputCode() local
471 LLCArgs.push_back(LLCPath.c_str()); in OutputCode()
475 LLCArgs.push_back(ToolArgs[i].c_str()); in OutputCode()
477 LLCArgs.push_back("-o"); in OutputCode()
478 LLCArgs.push_back(OutputAsmFile.c_str()); // Output to the Asm file in OutputCode()
479 LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode in OutputCode()
482 LLCArgs.push_back("-filetype=obj"); in OutputCode()
484 LLCArgs.push_back (nullptr); in OutputCode()
489 for (unsigned i = 0, e = LLCArgs.size()-1; i != e; ++i) in OutputCode()
490 errs() << " " << LLCArgs[i]; in OutputCode()
493 if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], in OutputCode()
496 Error = ProcessFailure(LLCPath, &LLCArgs[0], in OutputCode()