From 7b2700b2748b9513811ab6521c9b57e23175c1e2 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 8 Jun 2020 23:11:12 -0400 Subject: Fix warnings --- lowlevelilinstruction.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lowlevelilinstruction.cpp') diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp index faaa79a9..529f6840 100644 --- a/lowlevelilinstruction.cpp +++ b/lowlevelilinstruction.cpp @@ -3036,13 +3036,13 @@ ExprId LowLevelILFunction::FlagSSA(const SSAFlag& flag, const ILSourceLocation& } -ExprId LowLevelILFunction::FlagBit(size_t size, uint32_t flag, uint32_t bitIndex, const ILSourceLocation& loc) +ExprId LowLevelILFunction::FlagBit(size_t size, uint32_t flag, size_t bitIndex, const ILSourceLocation& loc) { return AddExprWithLocation(LLIL_FLAG_BIT, loc, size, 0, flag, bitIndex); } -ExprId LowLevelILFunction::FlagBitSSA(size_t size, const SSAFlag& flag, uint32_t bitIndex, +ExprId LowLevelILFunction::FlagBitSSA(size_t size, const SSAFlag& flag, size_t bitIndex, const ILSourceLocation& loc) { return AddExprWithLocation(LLIL_FLAG_BIT_SSA, loc, size, 0, flag.flag, flag.version, bitIndex); @@ -3445,7 +3445,7 @@ ExprId LowLevelILFunction::Breakpoint(const ILSourceLocation& loc) } -ExprId LowLevelILFunction::Trap(uint32_t num, const ILSourceLocation& loc) +ExprId LowLevelILFunction::Trap(int64_t num, const ILSourceLocation& loc) { return AddExprWithLocation(LLIL_TRAP, loc, 0, 0, num); } -- cgit v1.3.1