Skip to content

Commit e5cd1ef

Browse files
committed
[GR-69749] Fix hash collisions in CompilationResultBuilder.buildLabelOffsets().
PullRequest: graal/22168
2 parents 5061a74 + 1e78f04 commit e5cd1ef

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/lir/LIRInstruction.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -473,11 +473,6 @@ public LIRInstructionClass<?> getLIRInstructionClass() {
473473
return instructionClass;
474474
}
475475

476-
@Override
477-
public int hashCode() {
478-
return id;
479-
}
480-
481476
public boolean needsClearUpperVectorRegisters() {
482477
return false;
483478
}

0 commit comments

Comments
 (0)