forked from OSchip/llvm-project
[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:
parent
109bf25e2c
commit
417b1164c2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue