Home
last modified time | relevance | path

Searched refs:DwoFile (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTOBackend.cpp386 SmallString<1024> DwoFile(Conf.SplitDwarfOutput); in codegen() local
393 DwoFile = Conf.DwoDir; in codegen()
394 sys::path::append(DwoFile, std::to_string(Task) + ".dwo"); in codegen()
395 TM->Options.MCOptions.SplitDwarfFile = std::string(DwoFile); in codegen()
399 if (!DwoFile.empty()) { in codegen()
401 DwoOut = std::make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::OF_None); in codegen()
403 report_fatal_error("Failed to open " + DwoFile + ": " + EC.message()); in codegen()