Skip to content

Commit

Permalink
Fix comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sdmaclea committed Jun 2, 2021
1 parent 393ad98 commit 42ce788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/comdelegate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class ShuffleIterator
}

// Only Apple Silicon ABI currently supports unaligned stack argument shuffling
_ASSERTE(byteIndex == index * TARGET_POINTER_SIZE);
_ASSERTE(byteIndex == unsigned(index * TARGET_POINTER_SIZE));
return index;
#else
// Tha Apple Silicon ABI does not consume an entire stack slot for every argument
Expand Down

0 comments on commit 42ce788

Please sign in to comment.