]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Rename a couple more UInts which really should be SVals.
authorJulian Seward <jseward@acm.org>
Fri, 16 Nov 2007 03:55:48 +0000 (03:55 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 16 Nov 2007 03:55:48 +0000 (03:55 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7160

helgrind/hg_main.c

index b9358c5391230ca79e61d56978710147fb8f77cc..3a7982119e7a70f1cd8fa330dd79573288dfdd9b 100644 (file)
@@ -3818,7 +3818,7 @@ SVal* sequentialise_tree ( /*MOD*/SVal* dst, /*OUT*/Bool* anyShared,
 
 #  undef PUT
 
-   tl_assert( (((Char*)dst) - ((Char*)dst0)) == 8 * sizeof(UInt) );
+   tl_assert( (((Char*)dst) - ((Char*)dst0)) == 8 * sizeof(SVal) );
    return dst;
 }
 
@@ -3842,7 +3842,7 @@ Bool sequentialise_CacheLine ( /*OUT*/SVal* dst, Word nDst, CacheLine* src )
 
    /* Assert we wrote N_LINE_ARANGE shadow values. */
    tl_assert( ((HChar*)dst) - ((HChar*)dst0) 
-              == nDst * sizeof(UInt) );
+              == nDst * sizeof(SVal) );
 
    return anyShared;
 }