Skip to content

Commit

Permalink
[vm/gardening] Fix int64_t/intptr_t type mismatch.
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
aam authored and Commit Queue committed Nov 27, 2024
1 parent c67598f commit b3a9505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/vm/simulator_arm64.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit b3a9505

Please sign in to comment.