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.
This commit is contained in:
Rene Gollent 2013-01-01 16:12:50 -05:00
parent 612ab97918
commit ec26975575

View File

@ -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();