|
From: <sv...@va...> - 2014-08-22 19:07:32
|
Author: sewardj
Date: Fri Aug 22 19:07:12 2014
New Revision: 14335
Log:
mc_LOADV_128_or_256_slow: change a constant from V_BITS8_DEFINED
to V_BITS64_DEFINED so as to be consistent with the rest of the
types in this function. Since both values are zero it gives no
functional change.
Modified:
trunk/memcheck/mc_main.c
Modified: trunk/memcheck/mc_main.c
==============================================================================
--- trunk/memcheck/mc_main.c (original)
+++ trunk/memcheck/mc_main.c Fri Aug 22 19:07:12 2014
@@ -1286,7 +1286,7 @@
/* "at least one of the addresses is invalid" */
ok = False;
for (j = 0; j < szL; j++)
- ok |= pessim[j] != V_BITS8_DEFINED;
+ ok |= pessim[j] != V_BITS64_DEFINED;
tl_assert(ok);
if (0 == (a & (szB - 1)) && n_addrs_bad < szB) {
|