Is there a way to omit the parameters from the demangled C++ function 
names in valgrind? Templates cause long lines, which then become 
difficult to read, and using --demangle=no doesn't help much, mangled 
function names are still long and not much easier to read. For example, 
if function foo takes a reference to vector of int as an argument, 
valgrind shows something like:

     foo(std::vector<int, std::allocator<int> > const&) (filename.cpp:100)

This will become much worse for more complicated templates. So my 
question is, is there any way to reduce the output to something like this?

     foo(...) (filename.cpp:100)

Thanks.

Trevor


------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
Valgrind-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to