mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Rename lookUpSILFunctionFromVTable into lookUpFunctionFromVTable. NFC.
Swift SVN r24265
This commit is contained in:
@@ -392,7 +392,7 @@ public:
|
||||
|
||||
/// Attempt to lookup the function corresponding to \p Member in the class
|
||||
/// hierarchy of \p Class.
|
||||
SILFunction *lookUpSILFunctionFromVTable(ClassDecl *Class, SILDeclRef Member);
|
||||
SILFunction *lookUpFunctionFromVTable(ClassDecl *Class, SILDeclRef Member);
|
||||
|
||||
// Given a protocol conformance, attempt to create a witness table declaration
|
||||
// for it.
|
||||
|
||||
@@ -805,7 +805,7 @@ static ClassDecl *getClassDeclSuperClass(ClassDecl *Class) {
|
||||
|
||||
SILFunction *
|
||||
SILModule::
|
||||
lookUpSILFunctionFromVTable(ClassDecl *Class, SILDeclRef Member) {
|
||||
lookUpFunctionFromVTable(ClassDecl *Class, SILDeclRef Member) {
|
||||
// Until we reach the top of the class hierarchy...
|
||||
while (Class) {
|
||||
// Try to lookup a VTable for Class from the module...
|
||||
|
||||
Reference in New Issue
Block a user