blob: 32e790b92967dc88e6c6a55a2532b38c2aa3a489 [file] [log] [blame]
//===- MemoryRegion.cpp ---------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <mcld/Support/MemoryRegion.h>
using namespace mcld;
//==========================
// MemoryRegion
MemoryRegion::MemoryRegion(Space& pParent,
MemoryRegion::Address pVMAStart,
size_t pSize)
: m_Parent(pParent), m_VMAStart(pVMAStart), m_Length(pSize) {
}
MemoryRegion::~MemoryRegion()
{
}