C and Objective Caml bindings for GlobalVariable::isConstant.
[oota-llvm.git] / lib / VMCore / ModuleProvider.cpp
index 9a3eb168d9654b9eecdc1d15905869db712775cf..c9e4d87afe529505d52e19706625e2163e5e1214 100644 (file)
@@ -1,28 +1,26 @@
 //===-- ModuleProvider.cpp - Base implementation for module providers -----===//
 //
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
 // Minimal implementation of the abstract interface for providing a module.
 //
 //===----------------------------------------------------------------------===//
 
 #include "llvm/ModuleProvider.h"
 #include "llvm/Module.h"
+using namespace llvm;
 
 /// 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() {
-  if (!TheModule) return;
-
-  for (Module::iterator i = TheModule->begin(), e = TheModule->end();
-       i != e; ++i)
-    materializeFunction(i);
-}