Skip to content

Commit db7481a

Browse files
author
Marc Rasi
committed
const interpreter generics
1 parent 3328daf commit db7481a

File tree

4 files changed

+407
-11
lines changed

4 files changed

+407
-11
lines changed

include/swift/SIL/SILModule.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,6 @@ class SILModule {
266266
SILModule(const SILModule&) = delete;
267267
void operator=(const SILModule&) = delete;
268268

269-
/// Method which returns the SerializedSILLoader, creating the loader if it
270-
/// has not been created yet.
271-
SerializedSILLoader *getSILLoader();
272-
273269
/// Folding set for key path patterns.
274270
llvm::FoldingSet<KeyPathPattern> KeyPathPatterns;
275271

@@ -320,6 +316,10 @@ class SILModule {
320316
return Types.getTypeLowering(t);
321317
}
322318

319+
/// Method which returns the SerializedSILLoader, creating the loader if it
320+
/// has not been created yet.
321+
SerializedSILLoader *getSILLoader();
322+
323323
/// Invalidate cached entries in SIL Loader.
324324
void invalidateSILLoaderCaches();
325325

0 commit comments

Comments
 (0)