blob: d796acfa90e76b637ad95521041cdccef75cbc45 [file] [log] [blame]
Chris Lattnerd747a9f2009-09-09 23:46:42 +00001//===- MemoryObject.cpp - Abstract memory interface -----------------------===//
Sean Callanan1358fb72009-09-09 22:49:13 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Support/MemoryObject.h"
Chris Lattnerd747a9f2009-09-09 23:46:42 +000011using namespace llvm;
Sean Callanan1358fb72009-09-09 22:49:13 +000012
Chris Lattnerd747a9f2009-09-09 23:46:42 +000013MemoryObject::~MemoryObject() {
14}