]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / lib / DebugInfo / DWARFCompileUnit.h
1 //===-- DWARFCompileUnit.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
10 #ifndef LLVM_DEBUGINFO_DWARFCOMPILEUNIT_H
11 #define LLVM_DEBUGINFO_DWARFCOMPILEUNIT_H
12
13 #include "DWARFUnit.h"
14
15 namespace llvm {
16
17 class DWARFCompileUnit : public DWARFUnit {
18 public:
19   DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef AS,
20                    StringRef RS, StringRef SS, StringRef SOS, StringRef AOS,
21                    const RelocAddrMap *M, bool LE)
22       : DWARFUnit(DA, IS, AS, RS, SS, SOS, AOS, M, LE) {}
23   void dump(raw_ostream &OS);
24   // VTable anchor.
25   ~DWARFCompileUnit() LLVM_OVERRIDE;
26 };
27
28 }
29
30 #endif