Commit 35f9d9c9 authored by Robert Schmidt's avatar Robert Schmidt

Merge remote-tracking branch 'bpodrygajlo/dot-product-fix' into integration_2026_w29

fix(phy): Fix an uninitialized variable bug in dot_product (#302)

This was only present on non x86 systems.
Reviewed-by: default avatarLaurent THOMAS <laurent.thomas@open-cells.com>
parents e0e091b1 40a457d4
......@@ -17,7 +17,7 @@
c32_t dot_product(const c16_t *x, const c16_t *y, const uint32_t N, const int output_shift)
{
c32_t ret;
c32_t ret = {0, 0};
const c16_t *end = x + N;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment