|
From: Florian K. <fl...@ei...> - 2016-02-04 21:51:22
|
On 04.02.2016 17:02, Wojciech Franczyk wrote:
> Hi all,
>
> As you may know, Valgrind checks if there are no procedures bigger than
> 5bln bytes in debugged/profiled binary. It uses assert placed in
> *coregrind/m_debuginfo/storage.c:723* line (at least in version 3.11.0).
No. It used to be an assert. But as you're not the first to run into
this limitation, the assert has been downgraded to a warning. In 3.11.0
(and later) the code reads like this:
if (len >= 5000000)
VG_(message)(Vg_DebugMsg,
"warning: DiCfSI %#lx .. %#lx is huge;...........
Perhaps you're using a differnet valgrind version?
Florian
|