[vm/gardening] Fix int64_t/intptr_t type mismatch.
BUG=https://github.com/dart-lang/sdk/issues/59624 TEST=ci, manually on flutter Change-Id: I40c2c2cc477f44ea508bf486a3fa23768b4caeef Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/397940 Commit-Queue: Alexander Aprelev <aam@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
committed by
Commit Queue
parent
c67598f54c
commit
b3a95058b3
@@ -1214,7 +1214,7 @@ intptr_t Simulator::WriteExclusiveX(uword addr, intptr_t value, Instr* instr) {
|
||||
return 1; // Failure.
|
||||
}
|
||||
|
||||
int64_t old_value = exclusive_access_value_;
|
||||
intptr_t old_value = exclusive_access_value_;
|
||||
ClearExclusive();
|
||||
|
||||
if ((random_.NextUInt32() % 16) == 0) {
|
||||
|
||||
Reference in New Issue
Block a user