Home | History | Annotate | Download | only in llc

Lines Matching defs:outputFilename

50 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));

145 std::string outputFilename;
151 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
153 outputFilename = IFN;
155 return outputFilename;
162 if (OutputFilename.empty()) {
164 OutputFilename = "-";
166 OutputFilename = GetFileNameRoot(InputFilename);
173 OutputFilename += ".cbe.c";
175 OutputFilename += ".cpp";
177 OutputFilename += ".s";
179 OutputFilename += ".s";
183 OutputFilename += ".obj";
185 OutputFilename += ".o";
188 OutputFilename += ".null";
210 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,