diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp b/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp index afef4e4..233ca91 100644 --- a/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp +++ b/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp @@ -297,7 +297,7 @@ CompactUnwindInfo::ScanIndex (const ProcessSP &process_sp) Host::SystemLog (Host::eSystemLogError, "error: Invalid offset encountered in compact unwind info, skipping\n"); // don't trust anything from this compact_unwind section if it looks - // blatently invalid data in the header. + // blatantly invalid data in the header. m_indexes_computed = eLazyBoolNo; return; } @@ -693,7 +693,7 @@ enum x86_64_eh_regnum { }; // Convert the compact_unwind_info.h register numbering scheme -// to eRegisterKindGCC (eh_frame) register numbering scheme. +// to eRegisterKindEHFrame (eh_frame) register numbering scheme. uint32_t translate_to_eh_frame_regnum_x86_64 (uint32_t unwind_regno) { @@ -722,7 +722,7 @@ CompactUnwindInfo::CreateUnwindPlan_x86_64 (Target &target, FunctionInfo &functi unwind_plan.SetSourceName ("compact unwind info"); unwind_plan.SetSourcedFromCompiler (eLazyBoolYes); unwind_plan.SetUnwindPlanValidAtAllInstructions (eLazyBoolNo); - unwind_plan.SetRegisterKind (eRegisterKindGCC); + unwind_plan.SetRegisterKind (eRegisterKindEHFrame); unwind_plan.SetLSDAAddress (function_info.lsda_address); unwind_plan.SetPersonalityFunctionPtr (function_info.personality_ptr_address); @@ -976,7 +976,7 @@ enum i386_eh_regnum { }; // Convert the compact_unwind_info.h register numbering scheme -// to eRegisterKindGCC (eh_frame) register numbering scheme. +// to eRegisterKindEHFrame (eh_frame) register numbering scheme. uint32_t translate_to_eh_frame_regnum_i386 (uint32_t unwind_regno) { @@ -1006,7 +1006,7 @@ CompactUnwindInfo::CreateUnwindPlan_i386 (Target &target, FunctionInfo &function unwind_plan.SetSourceName ("compact unwind info"); unwind_plan.SetSourcedFromCompiler (eLazyBoolYes); unwind_plan.SetUnwindPlanValidAtAllInstructions (eLazyBoolNo); - unwind_plan.SetRegisterKind (eRegisterKindGCC); + unwind_plan.SetRegisterKind (eRegisterKindEHFrame); unwind_plan.SetLSDAAddress (function_info.lsda_address); unwind_plan.SetPersonalityFunctionPtr (function_info.personality_ptr_address); |