|
From: Nicholas N. <nj...@cs...> - 2007-08-09 11:48:58
|
On Thu, 9 Aug 2007, Evan Lavelle wrote: > I have no idea if this is possible (and I suspect it isn't), but > wouldn't telling valgrind that a long double is actually sizeof(long > double) bytes be a better fix? As I said, Valgrind works at the binary level and knows very little about C. It works with registers, memory locations, instructions, etc. It doesn't work with C-level variables, types, etc. So there is no way to tell it this information. Nick |