]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mc_LOADV_128_or_256_slow: change a constant from V_BITS8_DEFINED
authorJulian Seward <jseward@acm.org>
Fri, 22 Aug 2014 19:07:12 +0000 (19:07 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 22 Aug 2014 19:07:12 +0000 (19:07 +0000)
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.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14335

memcheck/mc_main.c

index 7cf6cd74bede2a49e13516f7fca6648c303621d6..970f3faa737843039dfec915f6c05859185a1a7f 100644 (file)
@@ -1286,7 +1286,7 @@ void mc_LOADV_128_or_256_slow ( /*OUT*/ULong* res,
    /* "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) {