From 9bd578efeab3b521ba37dd7706dc8f3a98ddb4bd Mon Sep 17 00:00:00 2001
From: Lang Hames <lhames@gmail.com>
Date: Thu, 26 Jun 2014 23:05:44 +0000
Subject: [PATCH] [RuntimeDyld] Teach MachOObjectImage to deregister itself
 with the debugger upon destruction the same way ELFObjectImage does.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211815 91177308-0d34-0410-b5e6-96231b3b80d8
---
 lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
index 5b96371880b..71b914d4905 100644
--- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
+++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
@@ -65,7 +65,10 @@ public:
     initOldAddress();
   }
 
-  virtual ~MachOObjectImage() {}
+  virtual ~MachOObjectImage() {
+    if (Registered)
+      deregisterWithDebugger();
+  }
 
   // Subclasses can override these methods to update the image with loaded
   // addresses for sections and common symbols