|
From: <sv...@va...> - 2014-09-08 09:26:03
|
Author: mjw
Date: Mon Sep 8 09:25:55 2014
New Revision: 14492
Log:
Bug 338803 followup. Only print cross-CU warning when -v is given.
Modified:
trunk/coregrind/m_debuginfo/readdwarf3.c
Modified: trunk/coregrind/m_debuginfo/readdwarf3.c
==============================================================================
--- trunk/coregrind/m_debuginfo/readdwarf3.c (original)
+++ trunk/coregrind/m_debuginfo/readdwarf3.c Mon Sep 8 09:25:55 2014
@@ -2558,7 +2558,7 @@
|| posn < cc->cu_start_offset
|| posn >= cc->cu_start_offset + cc->unit_length) {
static Bool reported = False;
- if (!reported) {
+ if (!reported && VG_(clo_verbosity) > 1) {
VG_(message)(Vg_DebugMsg,
"Warning: cross-CU LIMITATION: some inlined fn names\n"
"might be shown as UnknownInlinedFun\n");
|