Skip to content

Commit 09ab887

Browse files
committed
[aarch64] fix size of immediate arguments in intrinsic calls
1 parent bbbb091 commit 09ab887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/neon_intrinsics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14391,7 +14391,7 @@ static void add_input_reg(
1439114391
}
1439214392

1439314393
static void add_input_imm(
14394-
vector<ExprId>& inputs, LowLevelILFunction& il, InstructionOperand& operand, size_t size=0)
14394+
vector<ExprId>& inputs, LowLevelILFunction& il, InstructionOperand& operand, size_t size=8)
1439514395
{
1439614396
inputs.push_back(il.Const(size, operand.immediate));
1439714397
}

0 commit comments

Comments
 (0)