//===- MemoryRegion.h -----------------------------------------------------===// // // The MCLinker Project // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef MCLD_SUPPORT_MEMORYREGION_H_ #define MCLD_SUPPORT_MEMORYREGION_H_ #include "mcld/ADT/TypeTraits.h" #include #include namespace mcld { typedef NonConstTraits::pointer Address; typedef ConstTraits::pointer ConstAddress; typedef llvm::ArrayRef ConstMemoryRegion; typedef llvm::MutableArrayRef MemoryRegion; } // namespace mcld #endif // MCLD_SUPPORT_MEMORYREGION_H_