Skip to content

Commit

Permalink
[aarch64] fix size of immediate arguments in intrinsic calls
Browse files Browse the repository at this point in the history
  • Loading branch information
galenbwill committed Jan 15, 2025
1 parent bbbb091 commit 09ab887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/neon_intrinsics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14391,7 +14391,7 @@ static void add_input_reg(
}

static void add_input_imm(
vector<ExprId>& inputs, LowLevelILFunction& il, InstructionOperand& operand, size_t size=0)
vector<ExprId>& inputs, LowLevelILFunction& il, InstructionOperand& operand, size_t size=8)
{
inputs.push_back(il.Const(size, operand.immediate));
}
Expand Down

0 comments on commit 09ab887

Please sign in to comment.