|
From: <sv...@va...> - 2007-02-27 18:38:53
|
Author: sewardj
Date: 2007-02-27 18:38:33 +0000 (Tue, 27 Feb 2007)
New Revision: 6623
Log:
Barf more elegantly.
Modified:
trunk/coregrind/m_debuginfo/readdwarf.c
Modified: trunk/coregrind/m_debuginfo/readdwarf.c
===================================================================
--- trunk/coregrind/m_debuginfo/readdwarf.c 2007-02-27 18:37:21 UTC (rev 6622)
+++ trunk/coregrind/m_debuginfo/readdwarf.c 2007-02-27 18:38:33 UTC (rev 6623)
@@ -2680,9 +2680,8 @@
break;
default:
- if (ddump_frames /* || trace_cfi*/)
- VG_(printf)("XXX unhandled dwarf expr opcode 0x%x\n",
- (Int)opcode );
+ VG_(message)(Vg_DebugMsg, "DWARF2 CFI reader: unhandled DW_OP_ "
+ "opcode 0x%x", (Int)opcode);
return -1;
}
|