summaryrefslogtreecommitdiff
path: root/view/elf/elfview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'view/elf/elfview.cpp')
-rw-r--r--view/elf/elfview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/elf/elfview.cpp b/view/elf/elfview.cpp
index 6944741f..45c31f63 100644
--- a/view/elf/elfview.cpp
+++ b/view/elf/elfview.cpp
@@ -1284,7 +1284,7 @@ bool ElfView::Init()
if (auto pos = entryName.find(".", 2); (pos != std::string::npos))
{
// These mapping symbols do not define actual names
- if (entryName[0] == '$' && (entryName[1] == 'x' || entryName[1] == 'a' || entryName[1] == 'd'))
+ if (entryName[0] == '$' && (entryName[1] == 'x' || entryName[1] == 'a' || entryName[1] == 'd' || entryName[1] == 't'))
continue;
entryName = entryName.substr(pos + 1);
if (entryName.size())