Home | History | Annotate | Download | only in llc

Lines Matching defs:outputFilename

52 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
85 std::string outputFilename;
91 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
93 outputFilename = IFN;
95 return outputFilename;
102 if (OutputFilename.empty()) {
104 OutputFilename = "-";
106 OutputFilename = GetFileNameRoot(InputFilename);
112 OutputFilename += ".cbe.c";
114 OutputFilename += ".cpp";
116 OutputFilename += ".s";
118 OutputFilename += ".s";
122 OutputFilename += ".obj";
124 OutputFilename += ".o";
127 OutputFilename += ".null";
148 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,