Navigation Menu

Skip to content

Commit

Permalink
[RuntimeDyldChecker] Delete comparision of integers of different signs
Browse files Browse the repository at this point in the history
  • Loading branch information
luxufan committed Aug 3, 2021
1 parent f4e418a commit 0023caf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
Expand Up @@ -688,8 +688,6 @@ class RuntimeDyldCheckerExprEval {
int64_t Offset) const {
MCDisassembler *Dis = Checker.Disassembler;
StringRef SymbolMem = Checker.getSymbolContent(Symbol);
if (SymbolMem.size() <= Offset)
return false;
ArrayRef<uint8_t> SymbolBytes(SymbolMem.bytes_begin() + Offset,
SymbolMem.size() - Offset);

Expand Down

0 comments on commit 0023caf

Please sign in to comment.