use a nicer accessor.
[oota-llvm.git] / lib / VMCore / ModuleProvider.cpp
index 12a4fe6f25dd5a210c6c4bde465a6ec39b05a792..c9e4d87afe529505d52e19706625e2163e5e1214 100644 (file)
@@ -1,10 +1,10 @@
 //===-- 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.
@@ -24,15 +24,3 @@ ModuleProvider::ModuleProvider() : TheModule(0) { }
 ModuleProvider::~ModuleProvider() {
   delete TheModule;
 }
-
-/// materializeFunction - make sure the given function is fully read.
-///
-Module* ModuleProvider::materializeModule() {
-  assert(TheModule && "Attempting to materialize an invalid module!");
-
-  for (Module::iterator i = TheModule->begin(), e = TheModule->end();
-       i != e; ++i)
-    materializeFunction(i);
-
-  return TheModule;
-}