Revert "Store TypeUnits in a SmallVector<DWARFUnitSection> instead of a single DWARFU...
[oota-llvm.git] / 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_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H
11 #define LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H
12
13 #include "DWARFUnit.h"
14
15 namespace llvm {
16
17 class DWARFCompileUnit : public DWARFUnit {
18 public:
19   DWARFCompileUnit(DWARFContext& Context, const DWARFDebugAbbrev *DA,
20                    StringRef IS, StringRef RS, StringRef SS, StringRef SOS,
21                    StringRef AOS, const RelocAddrMap *M, bool LE,
22                    const DWARFUnitSectionBase &UnitSection)
23     : DWARFUnit(Context, DA, IS, RS, SS, SOS, AOS, M, LE, UnitSection) {}
24   void dump(raw_ostream &OS);
25   // VTable anchor.
26   ~DWARFCompileUnit() override;
27 };
28
29 }
30
31 #endif