diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-04 20:14:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-04 20:14:59 +0000 |
commit | cc593fb6c6979d1cd4c141f431ef79f5be9913d6 (patch) | |
tree | 919178ad9fa4dbb9007a84ee357b4ccaeafc6197 /llvm/lib/VMCore/ModuleProvider.cpp | |
parent | 069d6493c985b7260ef047bf46f4ecfac887e8de (diff) | |
download | bcm5719-llvm-cc593fb6c6979d1cd4c141f431ef79f5be9913d6.tar.gz bcm5719-llvm-cc593fb6c6979d1cd4c141f431ef79f5be9913d6.zip |
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.
llvm-svn: 8850
Diffstat (limited to 'llvm/lib/VMCore/ModuleProvider.cpp')
-rw-r--r-- | llvm/lib/VMCore/ModuleProvider.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/ModuleProvider.cpp b/llvm/lib/VMCore/ModuleProvider.cpp index 9a3eb168d96..3a9c50528e2 100644 --- a/llvm/lib/VMCore/ModuleProvider.cpp +++ b/llvm/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(); |