Rename lookUpSILFunctionFromVTable into lookUpFunctionFromVTable. NFC.

Swift SVN r24265
This commit is contained in:
Roman Levenstein
2015-01-08 04:05:28 +00:00
parent 0368074f43
commit 77fa044c8c
2 changed files with 2 additions and 2 deletions

View File

@@ -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.

View File

@@ -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...