Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Commit migrated from dotnet/coreclr@d5fe383
  • Loading branch information
qmfrederik authored and jkotas committed Feb 5, 2017
1 parent 481510a commit 3303a2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/src/vm/arm64/crthelpers.S
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//
//void JIT_MemSet(void *dst, int val, SIZE_T count)
//
// uintptr_t valEx = (char)val;
// uintptr_t valEx = (unsigned char)val;
// valEx = valEx | valEx << 8;
// valEx = valEx | valEx << 16;
// valEx = valEx | valEx << 32;
Expand Down Expand Up @@ -85,7 +85,7 @@
// as C++ method.

LEAF_ENTRY JIT_MemSet, _TEXT
sxtb w8,w1
uxtb w8,w1
sxtw x8,w8
orr x8,x8,x8, lsl #8
orr x8,x8,x8, lsl #0x10
Expand Down

0 comments on commit 3303a2b

Please sign in to comment.