[Lldb-commits] [lldb] r220100 - Make the registerEHFrame function do nothing,

Sean Callanan scallanan at apple.com
Fri Oct 17 16:02:42 PDT 2014


Author: spyffe
Date: Fri Oct 17 18:02:41 2014
New Revision: 220100

URL: http://llvm.org/viewvc/llvm-project?rev=220100&view=rev
Log:
Make the registerEHFrame function do nothing,
because the default implementation isn't meant
to run against a target process.

<rdar://problem/16639561>

Modified:
    lldb/trunk/include/lldb/Expression/IRExecutionUnit.h

Modified: lldb/trunk/include/lldb/Expression/IRExecutionUnit.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/IRExecutionUnit.h?rev=220100&r1=220099&r2=220100&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/IRExecutionUnit.h (original)
+++ lldb/trunk/include/lldb/Expression/IRExecutionUnit.h Fri Oct 17 18:02:41 2014
@@ -276,7 +276,7 @@ private:
         }
         
         virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) {
-            return m_default_mm_ap->registerEHFrames(Addr, LoadAddr, Size);
+            return;
         }
         
         //------------------------------------------------------------------





More information about the lldb-commits mailing list