summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-08 02:35:05 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-11 14:18:54 +0200
commit5102b98b7a17e90b28360bad08f4f44ab0aebf53 (patch)
treee6555540df992fcecdb955699d9fbb2501993a1f /tests
parente814569c8d176b564e8501a0fa3ebb11acbd3fa4 (diff)
checkasm/llviddspenc: Use declare_func_emms only when needed
There is no MMX code for diff_bytes since commit 230ea38de143368729ee1cce47b3a87fbafad8e4, so use declare_func instead of declare_func_emms() to also test that we are not in MMX mode after return. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/llviddspenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/llviddspenc.c b/tests/checkasm/llviddspenc.c
index 4ec46c96bd..e12003aeeb 100644
--- a/tests/checkasm/llviddspenc.c
+++ b/tests/checkasm/llviddspenc.c
@@ -52,8 +52,8 @@ static void check_diff_bytes(LLVidEncDSPContext *c)
LOCAL_ALIGNED_32(uint8_t, src2, [MAX_STRIDE]);
LOCAL_ALIGNED_32(uint8_t, src3, [MAX_STRIDE]);
- declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, const uint8_t *src1,
- const uint8_t *src2, intptr_t w);
+ declare_func(void, uint8_t *dst, const uint8_t *src1,
+ const uint8_t *src2, intptr_t w);
memset(dst0, 0, MAX_STRIDE);
memset(dst1, 0, MAX_STRIDE);