mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 08:11:54 +00:00
Mark a couple ModuleLinker member functions as const (NFC)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255903 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cdfe790540
commit
a8b43ff7ef
@ -113,8 +113,8 @@ class ModuleLinker {
|
||||
|
||||
/// Helper methods to check if we are importing from or potentially
|
||||
/// exporting from the current source module.
|
||||
bool isPerformingImport() { return ImportFunction != nullptr; }
|
||||
bool isModuleExporting() { return HasExportedFunctions; }
|
||||
bool isPerformingImport() const { return ImportFunction != nullptr; }
|
||||
bool isModuleExporting() const { return HasExportedFunctions; }
|
||||
|
||||
/// If we are importing from the source module, checks if we should
|
||||
/// import SGV as a definition, otherwise import as a declaration.
|
||||
|
Loading…
x
Reference in New Issue
Block a user