comparison graal/com.oracle.jvmci.meta/src/com/oracle/jvmci/meta/AbstractValue.java @ 21710:26774dc3a5e7

removed ExcludeFromIdentityComparisonVerification and replaced it with a white list in CheckGraalInvariants
author Doug Simon <doug.simon@oracle.com>
date Wed, 03 Jun 2015 21:34:21 +0200
parents 48c1ebd24120
children
comparison
equal deleted inserted replaced
21709:3c17c0c41a6b 21710:26774dc3a5e7
90 * Checks if this value is identical to {@code other}. 90 * Checks if this value is identical to {@code other}.
91 * 91 *
92 * Warning: Use with caution! Usually equivalence {@link #equals(Object)} is sufficient and 92 * Warning: Use with caution! Usually equivalence {@link #equals(Object)} is sufficient and
93 * should be used. 93 * should be used.
94 */ 94 */
95 @ExcludeFromIdentityComparisonVerification
96 public final boolean identityEquals(AbstractValue other) { 95 public final boolean identityEquals(AbstractValue other) {
97 return this == other; 96 return this == other;
98 } 97 }
99 } 98 }