On 9/15/06, Michael Popov <[EMAIL PROTECTED]> wrote:
Daniel Berlin wrote: > There are of course, collisions possible in the hash, and in the > absolute worst case, it is possible to end up with no warning but > wrong results. In particular, if you get a collision and the length > of the functions happens to be the same, i don't believe the linker > will complain about the symbol size changing. In case of hash collision, can't we just compare function body, byte by byte? Shouldn't be a big performance hit I think.
This is the part where Ian said "without help from the linker". The linker has no reason to do this unless we tell it, and the compiler doesn't see the other function body at the time of generating the hash (since it could be in another .o file).