From 00413e3d63c99ceed5d162ef650ad74c0db4e5d8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 4 Oct 2003 20:14:59 +0000 Subject: Rename AbstractModuleProvider -> ModuleProvider, to match the header file name, and because, while the class used by the interface is abstract, the actual concept is not. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8850 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/ModuleProvider.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/VMCore/ModuleProvider.cpp') diff --git a/lib/VMCore/ModuleProvider.cpp b/lib/VMCore/ModuleProvider.cpp index 9a3eb168d9..3a9c50528e 100644 --- a/lib/VMCore/ModuleProvider.cpp +++ b/lib/VMCore/ModuleProvider.cpp @@ -9,17 +9,17 @@ /// ctor - always have a valid Module /// -AbstractModuleProvider::AbstractModuleProvider() : TheModule(0) { } +ModuleProvider::ModuleProvider() : TheModule(0) { } /// dtor - when we leave, we take our Module with us /// -AbstractModuleProvider::~AbstractModuleProvider() { +ModuleProvider::~ModuleProvider() { delete TheModule; } /// materializeFunction - make sure the given function is fully read. /// -void AbstractModuleProvider::materializeModule() { +void ModuleProvider::materializeModule() { if (!TheModule) return; for (Module::iterator i = TheModule->begin(), e = TheModule->end(); -- cgit v1.2.3-18-g5258