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

References

tools/bugpoint/ToolRunner.cpp
  631   CCArgs.push_back(CCPath);
  634     CCArgs.push_back("-m32");
  639     CCArgs.push_back(*I);
  643     CCArgs.push_back("-x");
  645       CCArgs.push_back("c");
  646       CCArgs.push_back("-fno-strict-aliasing");
  648       CCArgs.push_back("assembler");
  653       if (TargetTriple.isOSDarwin() && !IsARMArchitecture(CCArgs))
  654         CCArgs.push_back("-force_cpusubtype_ALL");
  658   CCArgs.push_back(ProgramFile); // Specify the input filename.
  660   CCArgs.push_back("-x");
  661   CCArgs.push_back("none");
  662   CCArgs.push_back("-o");
  671   CCArgs.push_back(OutputBinary); // Output to the right file...
  678     CCArgs.push_back(ArgsForCC[i]);
  680   CCArgs.push_back("-lm"); // Hard-code the math library...
  681   CCArgs.push_back("-O2"); // Optimize the program a bit...
  683     CCArgs.push_back("-mcpu=v9");
  688              for (unsigned i = 0, e = CCArgs.size() - 1; i != e; ++i) errs()
  689              << " " << CCArgs[i];
  691   if (RunProgramWithTimeout(CCPath, CCArgs, "", "", ""))
  692     return ProcessFailure(CCPath, CCArgs);