summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/ModuleProvider.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-04 20:14:59 +0000
committerChris Lattner <sabre@nondot.org>2003-10-04 20:14:59 +0000
commitcc593fb6c6979d1cd4c141f431ef79f5be9913d6 (patch)
tree919178ad9fa4dbb9007a84ee357b4ccaeafc6197 /llvm/lib/VMCore/ModuleProvider.cpp
parent069d6493c985b7260ef047bf46f4ecfac887e8de (diff)
downloadbcm5719-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.cpp6
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();
OpenPOWER on IntegriCloud