|
From: Nicholas N. <nj...@cs...> - 2007-06-13 16:35:01
|
On Wed, 13 Jun 2007, Paul Floyd wrote:
> When I added
>
> VALGRIND_PRINTF("min %p %g %g", &min, min, _UNDEF);
>
> just before the supposed error site,
>
> a) the error went away
> b) I didn't get any "%g" output (perhaps this is normal?)
I don't know what the %g is supposed to do, but Valgrind's internal printf
doesn't handle floats or doubles, and VALGRIND_PRINTF will also not handle
arguments larger than word-size.
What is _UNDEF? Could it be undefined?
Nick
|