You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix hash collisions in CompilationResultBuilder.buildLabelOffsets().
LIRInstruction#hashCode() was inadequate for use in (identity) hash maps, since it was based on #id() which for many instructions would be -1 or -2, causing excessive hash collisions.
Removing the hashCode() override so that the identity hash code is returned instead.
0 commit comments