Don't show CFI reader warnings without -v. This is intended to hide

Warning: zero-sized CIE/FDE but not at section end in DWARF2 CFI reading

which I know is not a good fix, but I don't want to get into messing
with the CFI reader this close to 3.0, and the appearance of this
message causes many regtests to fail on some systems.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4299
This commit is contained in:
Julian Seward 2005-08-01 14:12:17 +00:00
parent cc579f2f0e
commit ec3da192ee

View File

@ -2486,7 +2486,7 @@ void ML_(read_callframe_info_dwarf2)
return;
bad:
if (!VG_(clo_xml))
if (!VG_(clo_xml) && VG_(clo_verbosity) > 1)
VG_(message)(Vg_UserMsg, "Warning: %s in DWARF2 CFI reading", how);
return;
}