Index: lldb/trunk/source/Symbol/Function.cpp =================================================================== --- lldb/trunk/source/Symbol/Function.cpp +++ lldb/trunk/source/Symbol/Function.cpp @@ -347,8 +347,6 @@ } ConstString Function::GetDisplayName() const { - if (!m_mangled) - return ConstString(); return m_mangled.GetDisplayDemangledName(GetLanguage()); } Index: lldb/trunk/source/Symbol/Symbol.cpp =================================================================== --- lldb/trunk/source/Symbol/Symbol.cpp +++ lldb/trunk/source/Symbol/Symbol.cpp @@ -117,8 +117,6 @@ } ConstString Symbol::GetDisplayName() const { - if (!m_mangled) - return ConstString(); return m_mangled.GetDisplayDemangledName(GetLanguage()); }