Searched refs:LLCArgs (Results 1 – 1 of 1) sorted by relevance
487 std::vector<const char *> LLCArgs; in OutputCode() local488 LLCArgs.push_back(LLCPath.c_str()); in OutputCode()492 LLCArgs.push_back(ToolArgs[i].c_str()); in OutputCode()494 LLCArgs.push_back("-o"); in OutputCode()495 LLCArgs.push_back(OutputAsmFile.c_str()); // Output to the Asm file in OutputCode()496 LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode in OutputCode()499 LLCArgs.push_back("-filetype=obj"); in OutputCode()501 LLCArgs.push_back (0); in OutputCode()506 for (unsigned i = 0, e = LLCArgs.size()-1; i != e; ++i) in OutputCode()507 errs() << " " << LLCArgs[i]; in OutputCode()[all …]