diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-02-10 18:11:31 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-02-10 18:11:31 +0000 |
commit | 488a800a4cf59dc27101aa81c698128ad8c8d354 (patch) | |
tree | 6e4a88a690e4a0dcf50e598cc4423c10d2165280 /llvm/lib/Transforms/IPO/FunctionImport.cpp | |
parent | ee195caf661f009f7c0733fb58ace98e350cc2e8 (diff) | |
download | bcm5719-llvm-488a800a4cf59dc27101aa81c698128ad8c8d354.tar.gz bcm5719-llvm-488a800a4cf59dc27101aa81c698128ad8c8d354.zip |
[ThinLTO] Move global processing from Linker to TransformUtils (NFC)
Summary:
As discussed on IRC, move the ThinLTOGlobalProcessing code out of
the linker, and into TransformUtils. The name of the class is changed
to FunctionImportGlobalProcessing.
Reviewers: joker.eph, rafael
Subscribers: joker.eph, llvm-commits
Differential Revision: http://reviews.llvm.org/D17081
llvm-svn: 260395
Diffstat (limited to 'llvm/lib/Transforms/IPO/FunctionImport.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/FunctionImport.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionImport.cpp b/llvm/lib/Transforms/IPO/FunctionImport.cpp index 6a1031f8130..e402f93ec17 100644 --- a/llvm/lib/Transforms/IPO/FunctionImport.cpp +++ b/llvm/lib/Transforms/IPO/FunctionImport.cpp @@ -24,6 +24,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/SourceMgr.h" +#include "llvm/Transforms/Utils/FunctionImportUtils.h" #include <map> |