summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFCompileUnit.h
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2014-04-24 22:51:03 +0000
committerAlexey Samsonov <samsonov@google.com>2014-04-24 22:51:03 +0000
commit7682f812663d6479f345b0d7cb79cfd6b7d55196 (patch)
treefce2549e00eadfd991d16bc422dc8365daf05cbe /llvm/lib/DebugInfo/DWARFCompileUnit.h
parenteb36ddf462de5621fab3a1fb064f526d7bd5fb3d (diff)
downloadbcm5719-llvm-7682f812663d6479f345b0d7cb79cfd6b7d55196.tar.gz
bcm5719-llvm-7682f812663d6479f345b0d7cb79cfd6b7d55196.zip
[DWARF parser] DWARFUnit ctor doesn't need both parsed and raw .debug_abbrev section. Remove the former.
llvm-svn: 207153
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFCompileUnit.h')
-rw-r--r--llvm/lib/DebugInfo/DWARFCompileUnit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.h b/llvm/lib/DebugInfo/DWARFCompileUnit.h
index d1853d80a38..2ed188e70c1 100644
--- a/llvm/lib/DebugInfo/DWARFCompileUnit.h
+++ b/llvm/lib/DebugInfo/DWARFCompileUnit.h
@@ -16,10 +16,10 @@ namespace llvm {
class DWARFCompileUnit : public DWARFUnit {
public:
- DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef AS,
- StringRef RS, StringRef SS, StringRef SOS, StringRef AOS,
+ DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef RS,
+ StringRef SS, StringRef SOS, StringRef AOS,
const RelocAddrMap *M, bool LE)
- : DWARFUnit(DA, IS, AS, RS, SS, SOS, AOS, M, LE) {}
+ : DWARFUnit(DA, IS, RS, SS, SOS, AOS, M, LE) {}
void dump(raw_ostream &OS);
// VTable anchor.
~DWARFCompileUnit() override;
OpenPOWER on IntegriCloud