ThinLTO indexing may decide to skip all objects. If we don't write something to
the list build system may consider this as failure or linker can reuse a file
from the previews build.
Details
Diff Detail
- Build Status
Buildable 15235 Build 15235: arc lint + arc unit
Event Timeline
llvm/include/llvm/LTO/LTO.h | ||
---|---|---|
225 | While here, can you add the missing documentation for this parameter? | |
llvm/lib/LTO/LTO.cpp | ||
1041 | We only have one backend object - why use a shared_ptr instead of a unique_ptr? | |
llvm/tools/gold/gold-plugin.cpp | ||
739 | s/return/returns/ | |
742 | Suggest changing order to do early return of nullptr if filename is empty. |
llvm/lib/LTO/LTO.cpp | ||
---|---|---|
1041 | No easy way to capture unique_ptr and copy that into std::function in c++11. |
While here, can you add the missing documentation for this parameter?