diff options
Diffstat (limited to 'lldb/source/Symbol/UnwindTable.cpp')
-rw-r--r-- | lldb/source/Symbol/UnwindTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Symbol/UnwindTable.cpp b/lldb/source/Symbol/UnwindTable.cpp index 90b33a69a78..e21b0f8696d 100644 --- a/lldb/source/Symbol/UnwindTable.cpp +++ b/lldb/source/Symbol/UnwindTable.cpp @@ -56,7 +56,7 @@ UnwindTable::Initialize () SectionSP sect = sl->FindSectionByType (eSectionTypeEHFrame, true); if (sect.get()) { - m_eh_frame = new DWARFCallFrameInfo(m_object_file, sect, eRegisterKindGCC, true); + m_eh_frame = new DWARFCallFrameInfo(m_object_file, sect, eRegisterKindEHFrame, true); } sect = sl->FindSectionByType (eSectionTypeCompactUnwind, true); if (sect.get()) |