On Fri, May 13, 2011 at 12:18 AM, Frederico Rodrigues Abraham <[email protected]> wrote: > I was wondering if it is possible to run valgrind with > --leak-check=yes or =full without having valgrind check for use of > uninitialized values, memory invasion, memory corruption, etc. It would > be very useful since it must be many times faster than doing all these > checks.
You can use --undef-value-errors=no to turn off definedness checking. That's as close as you'll get; the leak checker needs the addressability information. Nick ------------------------------------------------------------------------------ Simplify data backup and recovery for your virtual environment with vRanger. Installation's a snap, and flexible recovery options mean your data is safe, secure and there when you need it. Data protection magic? Nope - It's vRanger. Get your free trial download today. http://p.sf.net/sfu/quest-sfdev2dev _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
