comparison graal/com.oracle.jvmci.meta/src/com/oracle/jvmci/meta/Value.java @ 21733:27943aac2e3c

Merge
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Thu, 04 Jun 2015 11:08:12 -0700
parents e7f5ddef438d 26774dc3a5e7
children
comparison
equal deleted inserted replaced
21732:bc2ec35a7189 21733:27943aac2e3c
61 * Checks if this value is identical to {@code other}. 61 * Checks if this value is identical to {@code other}.
62 * 62 *
63 * Warning: Use with caution! Usually equivalence {@link #equals(Object)} is sufficient and 63 * Warning: Use with caution! Usually equivalence {@link #equals(Object)} is sufficient and
64 * should be used. 64 * should be used.
65 */ 65 */
66 @ExcludeFromIdentityComparisonVerification
67 default boolean identityEquals(Value other) { 66 default boolean identityEquals(Value other) {
68 return this == other; 67 return this == other;
69 } 68 }
70 } 69 }