aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/LTO/UpdateCompilerUsed.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-07-14Move legacy LTO interface headers to legacy/ directory.Peter Collingbourne1-1/+1
Differential Revision: https://reviews.llvm.org/D22173 llvm-svn: 275476
2016-06-22[UpdateCompilerUsed] API rename and cleanup, suggested by Rafaael.Davide Italiano1-1/+1
* UpdateCompilerUsed() -> updateCompilerUsed() * ThinLTO doesn't use the API so we can remove the include * Clean up unused #include <functional> from the header * Rename #ifdef guard comment to be correct. llvm-svn: 273461
2016-06-22[LTO] Move UpdateCompilerUsed.h from lib/ to include/Davide Italiano1-2/+1
I plan to use it in lld soon. Differential Revision: http://reviews.llvm.org/D21575 llvm-svn: 273380
2016-04-13Simplify LTOInternalize into UpdateLLVMCompilerUsedMehdi Amini1-0/+147
It is now only doing the update to the llvm.compiler_used global. The client has to call separately the internalization stage. Hopefully the code is simpler to understand this way. From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 266174