[haiku-commits] haiku: hrev45118 - src/apps/debugger/debug_info

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 1 Jan 2013 22:14:51 +0100 (CET)

hrev45118 adds 1 changeset to branch 'master'
old head: 612ab9791896498800cce95a52d2a50f61f6b78f
new head: ec269755757a4577b5d7b513805a4a36dd9ffa49
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=ec26975+%5E612ab97

----------------------------------------------------------------------------

ec26975: Disable populating return values onto the variable list.
  
  - Still needs some work with respect to false positives in the most
    recent code, as well as the missing bits for PIC.

                                      [ Rene Gollent <anevilyak@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45118
Commit:      ec269755757a4577b5d7b513805a4a36dd9ffa49
URL:         http://cgit.haiku-os.org/haiku/commit/?id=ec26975
Author:      Rene Gollent <anevilyak@xxxxxxxxx>
Date:        Tue Jan  1 21:12:50 2013 UTC

----------------------------------------------------------------------------

1 file changed, 4 insertions(+)
src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp | 4 ++++

----------------------------------------------------------------------------

diff --git a/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp 
b/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp
index 6d60b1b..b96814d 100644
--- a/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp
+++ b/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp
@@ -673,10 +673,14 @@ DwarfImageDebugInfo::CreateFrame(Image* image,
                        instructionPointer, functionInstance->Address() - 
fRelocationDelta,
                        subprogramEntry->Variables(), 
subprogramEntry->Blocks());
 
+               // TODO: re-enable once PIC and false positive issues
+               // are properly dealt with
+#if 0
                if (returnFunctionAddress != 0) {
                        _CreateReturnValue(returnFunctionAddress, image, frame,
                                *stackFrameDebugInfo);
                }
+#endif
        }
 
        _frame = frameReference.Detach();


Other related posts:

  • » [haiku-commits] haiku: hrev45118 - src/apps/debugger/debug_info - anevilyak