HomeSort by relevance Sort by last modified time
    Searched defs:InputFilename (Results 1 - 3 of 3) 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/llc/
llc.cpp 62 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
150 if (InputFilename == "-")
153 // If InputFilename ends in .bc or .ll, remove it.
154 StringRef IFN = InputFilename;
282 if (StringRef(InputFilename).endswith_lower(".mir")) {
283 MIR = createMIRParserFromFile(InputFilename, Err, Context);
287 M = parseIRFile(InputFilename, Err, Context);
296 errs() << argv[0] << ": " << InputFilename
  /external/llvm/tools/verify-uselistorder/
verify-uselistorder.cpp 58 static cl::opt<std::string> InputFilename(cl::Positional,
544 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
551 errs() << argv[0] << ": " << InputFilename

Completed in 99 milliseconds