reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/bugpoint/ToolRunner.cpp
  447   LLCArgs.push_back(LLCPath);
  451     LLCArgs.push_back(ToolArgs[i]);
  453   LLCArgs.push_back("-o");
  454   LLCArgs.push_back(OutputAsmFile); // Output to the Asm file
  455   LLCArgs.push_back(Bitcode);       // This is the input bitcode
  458     LLCArgs.push_back("-filetype=obj");
  463              for (unsigned i = 0, e = LLCArgs.size() - 1; i != e; ++i) errs()
  464              << " " << LLCArgs[i];
  466   if (RunProgramWithTimeout(LLCPath, LLCArgs, "", "", "", Timeout, MemoryLimit))
  467     return ProcessFailure(LLCPath, LLCArgs, Timeout, MemoryLimit);