mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
Fix MSVC warning "comparison of integers of different signs" (NFC)
From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c5d570ceb
commit
d4b1021e3e
@ -664,7 +664,7 @@ static bool openBitcodeFile(StringRef Path,
|
||||
// If we have a wrapper header, parse it and ignore the non-bc file contents.
|
||||
// The magic number is 0x0B17C0DE stored in little endian.
|
||||
if (isBitcodeWrapper(BufPtr, EndBufPtr)) {
|
||||
if (EndBufPtr - BufPtr < BWH_HeaderSize)
|
||||
if (MemBuf->getBufferSize() < BWH_HeaderSize)
|
||||
return Error("Invalid bitcode wrapper header");
|
||||
|
||||
if (Dump) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user