aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ModuleProvider.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/ModuleProvider.h')
-rw-r--r--include/llvm/ModuleProvider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ModuleProvider.h b/include/llvm/ModuleProvider.h
index e8e6052c0f..8f7010360c 100644
--- a/include/llvm/ModuleProvider.h
+++ b/include/llvm/ModuleProvider.h
@@ -14,13 +14,13 @@
class Function;
class Module;
-class AbstractModuleProvider {
+class ModuleProvider {
protected:
Module *TheModule;
- AbstractModuleProvider();
+ ModuleProvider();
public:
- virtual ~AbstractModuleProvider();
+ virtual ~ModuleProvider();
/// getModule - returns the module this provider is encapsulating.
///