In share/vm/opto/regmask.cpp, bitsInByte is declared like this: extern uint8_t bitsInByte[512];
This does not match the actual definition in share/vm/libadt/vectset.cpp:
uint8_t bitsInByte[256] = { // ...
(Discovered by the linker during a trial run with link time optimization)
This does not match the actual definition in share/vm/libadt/vectset.cpp:
uint8_t bitsInByte[256] = { // ...
(Discovered by the linker during a trial run with link time optimization)