Skip to content

Commit b3a9505

Browse files
aamCommit Queue
authored andcommitted
[vm/gardening] Fix int64_t/intptr_t type mismatch.
BUG=#59624 TEST=ci, manually on flutter Change-Id: I40c2c2cc477f44ea508bf486a3fa23768b4caeef Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/397940 Commit-Queue: Alexander Aprelev <[email protected]> Reviewed-by: Ryan Macnak <[email protected]>
1 parent c67598f commit b3a9505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/vm/simulator_arm64.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ intptr_t Simulator::WriteExclusiveX(uword addr, intptr_t value, Instr* instr) {
12141214
return 1; // Failure.
12151215
}
12161216

1217-
int64_t old_value = exclusive_access_value_;
1217+
intptr_t old_value = exclusive_access_value_;
12181218
ClearExclusive();
12191219

12201220
if ((random_.NextUInt32() % 16) == 0) {

0 commit comments

Comments
 (0)