|
From: <sv...@va...> - 2009-10-09 01:15:30
|
Author: sewardj
Date: 2009-10-09 02:15:16 +0100 (Fri, 09 Oct 2009)
New Revision: 10902
Log:
mc_LOADVn_slow: disable debug printing.
Modified:
branches/ICC111/memcheck/mc_main.c
branches/ICC111/memcheck/tests/amd64/strlen-sse2-64-2.stderr.exp
branches/ICC111/memcheck/tests/x86/strlen-sse2-32-2.stderr.exp
Modified: branches/ICC111/memcheck/mc_main.c
===================================================================
--- branches/ICC111/memcheck/mc_main.c 2009-10-09 00:52:57 UTC (rev 10901)
+++ branches/ICC111/memcheck/mc_main.c 2009-10-09 01:15:16 UTC (rev 10902)
@@ -1253,8 +1253,8 @@
We don't care about the endianness here, since we're
merely counting how many addresses are invalid. (Could do
better!) */
-VG_(printf)("QQQQ a = %#lx mo = %d\n", a, (Int)mo);
Addr a128 = mo == MoLA64of128 ? a : a-8;
+ if (0) VG_(printf)("QQQQ a = %#lx mo = %d\n", a, (Int)mo);
if (VG_IS_16_ALIGNED(a128)) {
Int nab128 = 0;
for (i = 0; i < 16; i++) {
@@ -1270,7 +1270,7 @@
addressible bytes followed by unaddressable bytes,
since that's the expected use case (a zero-terminated
C-style string). */
-VG_(printf)("QQQQ a128 = %#lx nab = %d\n", a128, (Int)nab128);
+ if (0) VG_(printf)("QQQQ a128 = %#lx nab = %d\n", a128, (Int)nab128);
tl_assert(nab128 > 0);
if (nab128 < 16)
complain = False;
Modified: branches/ICC111/memcheck/tests/amd64/strlen-sse2-64-2.stderr.exp
===================================================================
--- branches/ICC111/memcheck/tests/amd64/strlen-sse2-64-2.stderr.exp 2009-10-09 00:52:57 UTC (rev 10901)
+++ branches/ICC111/memcheck/tests/amd64/strlen-sse2-64-2.stderr.exp 2009-10-09 01:15:16 UTC (rev 10902)
@@ -1,6 +0,0 @@
-QQQQ a = 0x........ mo = 100
-QQQQ a128 = 0x........ nab = 12
-QQQQ a = 0x........ mo = 101
-QQQQ a128 = 0x........ nab = 12
-QQQQ a = 0x........ mo = 101
-QQQQ a128 = 0x........ nab = 4
Modified: branches/ICC111/memcheck/tests/x86/strlen-sse2-32-2.stderr.exp
===================================================================
--- branches/ICC111/memcheck/tests/x86/strlen-sse2-32-2.stderr.exp 2009-10-09 00:52:57 UTC (rev 10901)
+++ branches/ICC111/memcheck/tests/x86/strlen-sse2-32-2.stderr.exp 2009-10-09 01:15:16 UTC (rev 10902)
@@ -1,6 +0,0 @@
-QQQQ a = 0x........ mo = 100
-QQQQ a128 = 0x........ nab = 12
-QQQQ a = 0x........ mo = 101
-QQQQ a128 = 0x........ nab = 12
-QQQQ a = 0x........ mo = 101
-QQQQ a128 = 0x........ nab = 4
|