Home | History | Annotate | Download | only in llc

Lines Matching refs:OutputFilename

49 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
257 std::string outputFilename;
263 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
265 outputFilename = IFN;
267 return outputFilename;
274 if (OutputFilename.empty()) {
276 OutputFilename = "-";
278 OutputFilename = GetFileNameRoot(InputFilename);
284 OutputFilename += ".cbe.c";
286 OutputFilename += ".cpp";
288 OutputFilename += ".s";
290 OutputFilename += ".s";
294 OutputFilename += ".obj";
296 OutputFilename += ".o";
299 OutputFilename += ".null";
320 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,