|
From: Nicholas N. <nj...@ca...> - 2003-10-18 13:53:57
|
On Sat, 18 Oct 2003, Joerg Walter wrote: > when running one of my regression tests built with ICC 7.1 under the newly > released valgrind I see the following assertion failure: > > Memcheck: mc_translate.c:1108 (memcheck_instrument): Assertion `u_in->size > == 4 || u_in->size == 16' failed. It's a bug, change the line to this: sk_assert(u_in->size == 4 || u_in->size == 8 || u_in->size == 16); I've committed the change. Thanks for the report. N |