Skip to content

Commit 5900515

Browse files
Removed useless commented code as reported in issue ARM-software#195
1 parent 7236701 commit 5900515

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Source/BasicMathFunctions/arm_dot_prod_q15.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,7 @@ ARM_DSP_ATTRIBUTE void arm_dot_prod_q15(
151151
/* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */
152152

153153
/* Calculate dot product and store result in a temporary buffer. */
154-
//#if defined (ARM_MATH_DSP)
155-
// sum = __SMLALD(*pSrcA++, *pSrcB++, sum);
156-
//#else
157154
sum += (q63_t)((q31_t) *pSrcA++ * *pSrcB++);
158-
//#endif
159155

160156
/* Decrement loop counter */
161157
blkCnt--;

0 commit comments

Comments
 (0)