|
From: <sv...@va...> - 2007-11-16 03:55:47
|
Author: sewardj
Date: 2007-11-16 03:55:48 +0000 (Fri, 16 Nov 2007)
New Revision: 7160
Log:
Rename a couple more UInts which really should be SVals.
Modified:
trunk/helgrind/hg_main.c
Modified: trunk/helgrind/hg_main.c
===================================================================
--- trunk/helgrind/hg_main.c 2007-11-15 22:33:32 UTC (rev 7159)
+++ trunk/helgrind/hg_main.c 2007-11-16 03:55:48 UTC (rev 7160)
@@ -3818,7 +3818,7 @@
# 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 @@
/* Assert we wrote N_LINE_ARANGE shadow values. */
tl_assert( ((HChar*)dst) - ((HChar*)dst0)
- == nDst * sizeof(UInt) );
+ == nDst * sizeof(SVal) );
return anyShared;
}
|