[llvm-commits] CVS: llvm/include/llvm/ModuleProvider.h

Chris Lattner lattner at cs.uiuc.edu
Sat Oct 4 15:15:01 PDT 2003


Changes in directory llvm/include/llvm:

ModuleProvider.h updated: 1.3 -> 1.4

---
Log message:

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.


---
Diffs of the changes:

Index: llvm/include/llvm/ModuleProvider.h
diff -u llvm/include/llvm/ModuleProvider.h:1.3 llvm/include/llvm/ModuleProvider.h:1.4
--- llvm/include/llvm/ModuleProvider.h:1.3	Tue Sep 30 12:53:30 2003
+++ llvm/include/llvm/ModuleProvider.h	Sat Oct  4 15:14:22 2003
@@ -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.
   ///





More information about the llvm-commits mailing list