HomeSort by relevance Sort by last modified time
    Searched defs:InputFilename (Results 1 - 4 of 4) sorted by null

  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 147 SmallString<128> InputFilename;
150 InputFilename);
157 tool_output_file InFile(InputFilename, InputFD);
162 errs() << "Error writing bitcode file: " << InputFilename << "\n";
220 Args.push_back(InputFilename.c_str());
246 sys::fs::remove(InputFilename.c_str());
  /external/llvm/tools/opt/
opt.cpp 77 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
366 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
381 errs() << argv[0] << ": " << InputFilename
  /external/llvm/tools/llc/
llc.cpp 55 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
105 if (InputFilename == "-")
108 // If InputFilename ends in .bc or .ll, remove it.
109 StringRef IFN = InputFilename;
217 M = parseIRFile(InputFilename, Err, Context);
226 errs() << argv[0] << ": " << InputFilename
  /external/llvm/tools/verify-uselistorder/
verify-uselistorder.cpp 58 static cl::opt<std::string> InputFilename(cl::Positional,
531 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
538 errs() << argv[0] << ": " << InputFilename

Completed in 256 milliseconds