summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-06-04 01:26:29 +0000
committerGreg Clayton <gclayton@apple.com>2011-06-04 01:26:29 +0000
commita658fd26c3aea7411be7ed4144576348c396cd00 (patch)
tree5adc37df8d75d4b2496087792ac8d734fe1c6675 /lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
parent64ae92e5c5e4262fb994683ad9e059dc2d83d675 (diff)
downloadbcm5719-llvm-a658fd26c3aea7411be7ed4144576348c396cd00.tar.gz
bcm5719-llvm-a658fd26c3aea7411be7ed4144576348c396cd00.zip
Created a std::string in the base StopInfo class for the description and
cleaned up all base classes that had their own copy. Added a SetDescription accessor to the StopInfo class. llvm-svn: 132615
Diffstat (limited to 'lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp')
-rw-r--r--lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp b/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
index 09be5fda016..67f5953d006 100644
--- a/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
+++ b/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
@@ -391,9 +391,6 @@ ABIMacOSX_arm::CreateFunctionEntryUnwindPlan (UnwindPlan &unwind_plan)
pc_reg_num == LLDB_INVALID_REGNUM)
return false;
- unwind_plan.Clear();
- unwind_plan.SetRegisterKind (eRegisterKindDWARF);
-
UnwindPlan::Row row;
// Our previous Call Frame Address is the stack pointer
@@ -439,7 +436,7 @@ ABIMacOSX_arm::CreateDefaultUnwindPlan (UnwindPlan &unwind_plan)
return false;
UnwindPlan::Row row;
- const int32_t ptr_size = 8;
+ const int32_t ptr_size = 4;
unwind_plan.SetRegisterKind (eRegisterKindGeneric);
row.SetCFARegister (fp_reg_num);
OpenPOWER on IntegriCloud