|
From: Dirk M. <dm...@gm...> - 2003-11-21 00:22:59
|
On Thursday 20 November 2003 22:58, John Reiser wrote: > Valgrind 2.0.0 (memcheck) complains about a bit that is not uninitialized. ok, thats because the div instruction triggered by the (superflous) modulo operation is not tracking the validity of its operants on a bit-wise level. Instead it expects all bits to be initialized and will then track full validity of the result. We *could* implement bitwise-tracking of the modulo operation with relative ease. However, is it really important? |