diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-08-26 14:45:59 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-08-26 14:45:59 +0200 |
commit | 33e58c1d4e6c41d9ab18935325b5794e28285b4f (patch) | |
tree | ca0c3fbe74f002bfbcc143743a2c7a9e66d0fc39 /llvm_mode/LLVMInsTrim.so.cc | |
parent | 4be0ea596b86d4320545859c29bf0454dd765379 (diff) | |
download | afl++-33e58c1d4e6c41d9ab18935325b5794e28285b4f.tar.gz |
some warnings fixes
Diffstat (limited to 'llvm_mode/LLVMInsTrim.so.cc')
-rw-r--r-- | llvm_mode/LLVMInsTrim.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/LLVMInsTrim.so.cc b/llvm_mode/LLVMInsTrim.so.cc index 775e9591..61a420ba 100644 --- a/llvm_mode/LLVMInsTrim.so.cc +++ b/llvm_mode/LLVMInsTrim.so.cc @@ -243,7 +243,7 @@ struct InsTrim : public ModulePass { for (unsigned I = 0; I < PrevLocSize - 1; ++I) PrevLocShuffle.push_back(ConstantInt::get(Int32Ty, I)); - for (unsigned I = PrevLocSize; I < PrevLocVecSize; ++I) + for (int I = PrevLocSize; I < PrevLocVecSize; ++I) PrevLocShuffle.push_back(ConstantInt::get(Int32Ty, PrevLocSize)); Constant *PrevLocShuffleMask = ConstantVector::get(PrevLocShuffle); |