diff --git a/src/parsers/elf-parser.cc b/src/parsers/elf-parser.cc index 0d1febfd..27c83204 100644 --- a/src/parsers/elf-parser.cc +++ b/src/parsers/elf-parser.cc @@ -217,14 +217,14 @@ class ElfInstance : public IFileParser, IFileParser::ILineListener parseOneElf(); + setupSections(); + // Gcov data? if (IConfiguration::getInstance().keyAsInt("gcov") && !m_gcnoFiles.empty()) parseGcnoFiles(relocation); else parseOneDwarf(relocation); - setupSections(); - return true; }