* misc.c (GC_init): Do not check sizeof(signed_word) value if CPPCHECK.
}
# endif
GC_STATIC_ASSERT(sizeof (ptr_t) == sizeof(word));
- GC_STATIC_ASSERT(sizeof (signed_word) == sizeof(word));
+# if !defined(CPPCHECK)
+ GC_STATIC_ASSERT(sizeof(signed_word) == sizeof(word));
+# endif
GC_STATIC_ASSERT(sizeof (struct hblk) == HBLKSIZE);
# ifndef THREADS
GC_ASSERT(!((word)GC_stackbottom HOTTER_THAN (word)GC_approx_sp()));