LLVM API Documentation
00001 //===-- DWARFRelocMap.h -----------------------------------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef LLVM_LIB_DEBUGINFO_DWARFRELOCMAP_H 00011 #define LLVM_LIB_DEBUGINFO_DWARFRELOCMAP_H 00012 00013 #include "llvm/ADT/DenseMap.h" 00014 00015 namespace llvm { 00016 00017 typedef DenseMap<uint64_t, std::pair<uint8_t, int64_t> > RelocAddrMap; 00018 00019 } // namespace llvm 00020 00021 #endif 00022