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
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
llvm/include/llvm/LTO/LTO.h | ||
---|---|---|
219 ↗ | (On Diff #134731) | While here, can you add the missing documentation for this parameter? |
llvm/lib/LTO/LTO.cpp | ||
1037 ↗ | (On Diff #134731) | We only have one backend object - why use a shared_ptr instead of a unique_ptr? |
llvm/tools/gold/gold-plugin.cpp | ||
739 ↗ | (On Diff #134731) | s/return/returns/ |
742 ↗ | (On Diff #134731) | Suggest changing order to do early return of nullptr if filename is empty. |
llvm/lib/LTO/LTO.cpp | ||
---|---|---|
1037 ↗ | (On Diff #134731) | No easy way to capture unique_ptr and copy that into std::function in c++11. |