Home | History | Annotate | Download | only in llc

Lines Matching refs:outputFilename

50 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
129 std::string outputFilename;
135 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
137 outputFilename = IFN;
139 return outputFilename;
146 if (OutputFilename.empty()) {
148 OutputFilename = "-";
150 OutputFilename = GetFileNameRoot(InputFilename);
157 OutputFilename += ".cbe.c";
159 OutputFilename += ".cpp";
161 OutputFilename += ".s";
163 OutputFilename += ".s";
167 OutputFilename += ".obj";
169 OutputFilename += ".o";
172 OutputFilename += ".null";
194 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error,