DWARFRelocMap.h 580 B

12345678910111213141516171819202122
  1. //===-- DWARFRelocMap.h -----------------------------------------*- C++ -*-===//
  2. //
  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. #ifndef LLVM_LIB_DEBUGINFO_DWARFRELOCMAP_H
  10. #define LLVM_LIB_DEBUGINFO_DWARFRELOCMAP_H
  11. #include "llvm/ADT/DenseMap.h"
  12. namespace llvm {
  13. typedef DenseMap<uint64_t, std::pair<uint8_t, int64_t> > RelocAddrMap;
  14. } // namespace llvm
  15. #endif