[lld] r273462 - [LTO] Update after API change in LLVM. NFC.

Davide Italiano via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 22 12:51:05 PDT 2016


Author: davide
Date: Wed Jun 22 14:51:05 2016
New Revision: 273462

URL: http://llvm.org/viewvc/llvm-project?rev=273462&view=rev
Log:
[LTO] Update after API change in LLVM. NFC.

Modified:
    lld/trunk/ELF/LTO.cpp

Modified: lld/trunk/ELF/LTO.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LTO.cpp?rev=273462&r1=273461&r2=273462&view=diff
==============================================================================
--- lld/trunk/ELF/LTO.cpp (original)
+++ lld/trunk/ELF/LTO.cpp Wed Jun 22 14:51:05 2016
@@ -309,7 +309,7 @@ std::vector<std::unique_ptr<InputFile>>
 
   // Update llvm.compiler.used so that optimizations won't strip
   // off AsmUndefinedReferences.
-  UpdateCompilerUsed(*Combined, *TM, AsmUndefinedRefs);
+  updateCompilerUsed(*Combined, *TM, AsmUndefinedRefs);
 
   if (Config->SaveTemps)
     saveBCFile(*Combined, ".lto.bc");




More information about the llvm-commits mailing list