1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/lib/VMCore/ModuleProvider.cpp
2003-09-18 16:17:06 +00:00

29 lines
774 B
C++

//===-- ModuleProvider.cpp - Base implementation for module providers -----===//
//
// Minimal implementation of the abstract interface for providing a module.
//
//===----------------------------------------------------------------------===//
#include "llvm/ModuleProvider.h"
#include "llvm/Module.h"
/// ctor - always have a valid Module
///
AbstractModuleProvider::AbstractModuleProvider() {
M = new Module("");
}
/// dtor - when we leave, we take our Module with us
///
AbstractModuleProvider::~AbstractModuleProvider() {
delete M;
}
/// materializeFunction - make sure the given function is fully read.
///
void AbstractModuleProvider::materializeModule() {
for (Module::iterator i = M->begin(), e = M->end(); i != e; ++i) {
materializeFunction(i);
}
}