Skip to content

Commit eb2e6b0

Browse files
committed
[GR-67449] Fix TruffleString.EqualNode to avoid nested node and extra field
PullRequest: graal/21436
2 parents ad4b518 + b5f0d3f commit eb2e6b0

File tree

1 file changed

+1
-1
lines changed
  • truffle/src/com.oracle.truffle.api.strings/src/com/oracle/truffle/api/strings

1 file changed

+1
-1
lines changed

truffle/src/com.oracle.truffle.api.strings/src/com/oracle/truffle/api/strings/TruffleString.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5968,7 +5968,7 @@ static boolean sameObject(AbstractTruffleString a, AbstractTruffleString b, Enco
59685968

59695969
@Fallback
59705970
static boolean check(AbstractTruffleString a, AbstractTruffleString b, Encoding expectedEncoding,
5971-
@Cached Node node,
5971+
@Bind Node node,
59725972
@Cached InlinedConditionProfile managedProfileA,
59735973
@Cached InlinedConditionProfile nativeProfileA,
59745974
@Cached InlinedConditionProfile managedProfileB,

0 commit comments

Comments
 (0)