diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2015-11-23 01:59:16 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2015-11-23 01:59:16 +0000 |
| commit | 8220e8a830dc5c62142c1c36bffd4d2d7dbc5960 (patch) | |
| tree | eb0c427edcd23f4104961896184ac2e335850ab9 | |
| parent | ededfce1b782e9e83cc497e68d2c52352b4f3775 (diff) | |
| download | bcm5719-llvm-8220e8a830dc5c62142c1c36bffd4d2d7dbc5960.tar.gz bcm5719-llvm-8220e8a830dc5c62142c1c36bffd4d2d7dbc5960.zip | |
Add const qualifier for FunctionInfoIndex in ModuleLinker and linkInModule() (NFC)
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 253840
| -rw-r--r-- | llvm/include/llvm/Linker/Linker.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Linker/LinkModules.cpp | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/llvm/include/llvm/Linker/Linker.h b/llvm/include/llvm/Linker/Linker.h index 679e60582e8..610b1ddf989 100644 --- a/llvm/include/llvm/Linker/Linker.h +++ b/llvm/include/llvm/Linker/Linker.h @@ -82,7 +82,7 @@ public: /// function is imported from the source module. /// Returns true on error. bool linkInModule(Module *Src, unsigned Flags = Flags::None, - FunctionInfoIndex *Index = nullptr, + const FunctionInfoIndex *Index = nullptr, Function *FuncToImport = nullptr); /// \brief Set the composite to the passed-in module. diff --git a/llvm/lib/Linker/LinkModules.cpp b/llvm/lib/Linker/LinkModules.cpp index 7649d13929f..f97bbe5a8e5 100644 --- a/llvm/lib/Linker/LinkModules.cpp +++ b/llvm/lib/Linker/LinkModules.cpp @@ -428,7 +428,7 @@ class ModuleLinker { /// Function index passed into ModuleLinker for using in function /// importing/exporting handling. - FunctionInfoIndex *ImportIndex; + const FunctionInfoIndex *ImportIndex; /// Function to import from source module, all other functions are /// imported as declarations instead of definitions. @@ -448,7 +448,7 @@ class ModuleLinker { public: ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM, DiagnosticHandlerFunction DiagnosticHandler, unsigned Flags, - FunctionInfoIndex *Index = nullptr, + const FunctionInfoIndex *Index = nullptr, Function *FuncToImport = nullptr) : DstM(dstM), SrcM(srcM), TypeMap(Set), ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues, this), @@ -2088,7 +2088,8 @@ void Linker::deleteModule() { Composite = nullptr; } -bool Linker::linkInModule(Module *Src, unsigned Flags, FunctionInfoIndex *Index, +bool Linker::linkInModule(Module *Src, unsigned Flags, + const FunctionInfoIndex *Index, Function *FuncToImport) { ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, DiagnosticHandler, Flags, Index, FuncToImport); |

