From 16dc86d9232cc0bf67d3e311c483a1b70a71ff99 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Thu, 25 Jun 2015 23:58:25 +0000 Subject: [PATCH] Re-enable 'process save-core' for arm64 targets. Whatever problem I saw that caused me to disable this initially is not a problem today. llvm-svn: 240737 --- lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 511d73d22263..015798f749b2 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -5675,11 +5675,7 @@ ObjectFileMachO::SaveCore (const lldb::ProcessSP &process_sp, bool make_core = false; switch (target_arch.GetMachine()) { - // arm64 core file writing is having some problem with writing down the - // dyld shared images info struct and/or the main executable binary. May - // turn out to be a debugserver problem, not sure yet. -// case llvm::Triple::aarch64: - + case llvm::Triple::aarch64: case llvm::Triple::arm: case llvm::Triple::x86: case llvm::Triple::x86_64: