checkasm: use declare_func_float() in sbrdsp sum_square test

The function returns a float.

This fixes the test in x86_32 targets.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-07-04 23:02:48 -03:00
parent bcbe9e4447
commit 3d3243577c
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ static void test_sum_square(void)
INTFLOAT res1;
LOCAL_ALIGNED_16(INTFLOAT, src, [256], [2]);
declare_func(INTFLOAT, INTFLOAT (*x)[2], int n);
declare_func_float(INTFLOAT, INTFLOAT (*x)[2], int n);
randomize((INTFLOAT *)src, 256 * 2);
res0 = call_ref(src, 256);