From 9f05d22509de68655005ca6630972438bb0ef26c Mon Sep 17 00:00:00 2001 From: Christoph Egger Date: Tue, 27 May 2014 14:37:01 +0200 Subject: [PATCH] Display entries for all functions --- src/gui/Mainwindow.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 91a933b..f91957b 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -62,6 +62,10 @@ void Mainwindow::open() { void Mainwindow::openBinary(const std::string& filename) { if (filename != "") { disassembler.reset(new LLVMDisassembler(filename)); + disassembler->forEachFunction([&](uint64_t address, Function* fun) { + populateSymbolInformation(fun->getName()); + }); + // curBin = new Binary(fileName.toStdString()); // std::vector symbols = curBin->getSymbols(); -- 2.39.2