Files

26 lines
802 B
C++
Raw Permalink Normal View History

//===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
2005-04-21 22:55:34 +00:00
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
2005-04-21 22:55:34 +00:00
//
//===----------------------------------------------------------------------===//
//
// This file defines some helpful functions for allocating memory and dealing
// with memory mapped files
//
//===----------------------------------------------------------------------===//
2010-11-29 18:16:10 +00:00
#include "llvm/Support/Memory.h"
2004-12-27 06:15:57 +00:00
#include "llvm/Config/config.h"
#include "llvm/Support/Valgrind.h"
// Include the platform-specific parts of this class.
2004-12-27 06:15:57 +00:00
#ifdef LLVM_ON_UNIX
#include "Unix/Memory.inc"
2004-12-27 06:15:57 +00:00
#endif
#ifdef LLVM_ON_WIN32
2010-11-29 18:16:10 +00:00
#include "Windows/Memory.inc"
2004-12-27 06:15:57 +00:00
#endif