[JITLink] Minor fix to avoid Windows compiler warning for static-cast

Change-Id: Id0c1d5535b53e2aebe314151c0efa585e763f3f6

Differential Revision: https://reviews.llvm.org/D100093
This commit is contained in:
David Stuttard 2021-04-07 14:19:21 +01:00
parent 109bf25e2c
commit 417b1164c2
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ const char NullPointerContent[8] = {0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00};
const char PointerJumpStubContent[6] = {
static_cast<char>(0xFF), 0x25, 0x00, 0x00, 0x00, 0x00};
static_cast<char>(0xFFu), 0x25, 0x00, 0x00, 0x00, 0x00};
} // end namespace x86_64
} // end namespace jitlink