|
From: <sv...@va...> - 2011-03-29 17:05:18
|
Author: sewardj
Date: 2011-03-29 18:05:09 +0100 (Tue, 29 Mar 2011)
New Revision: 11677
Log:
Fix yet another gcc-4.6 assigned-to-but-not-used warning.
Modified:
trunk/exp-ptrcheck/h_main.c
Modified: trunk/exp-ptrcheck/h_main.c
===================================================================
--- trunk/exp-ptrcheck/h_main.c 2011-03-29 10:56:32 UTC (rev 11676)
+++ trunk/exp-ptrcheck/h_main.c 2011-03-29 17:05:09 UTC (rev 11677)
@@ -1825,8 +1825,8 @@
Int o = offset;
Int sz = szB;
- Bool is4 = sz == 4;
- Bool is8 = sz == 8;
+ //Bool is4 = sz == 4;
+ //Bool is8 = sz == 8;
tl_assert(sz > 0);
tl_assert(host_is_big_endian());
|