util: Remove unused rtasm_cpu_has_sse2

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17803>
This commit is contained in:
Yonggang Luo 2022-08-07 14:32:49 +08:00 committed by Marge Bot
parent 4eaecd7965
commit 38dad17294
2 changed files with 0 additions and 13 deletions

View file

@ -45,12 +45,6 @@ int rtasm_cpu_has_sse(void)
return !debug_get_option_nosse() && get_cpu_caps()->has_sse;
}
int rtasm_cpu_has_sse2(void)
{
return !debug_get_option_nosse() && get_cpu_caps()->has_sse2;
}
#else
int rtasm_cpu_has_sse(void)
@ -58,9 +52,4 @@ int rtasm_cpu_has_sse(void)
return 0;
}
int rtasm_cpu_has_sse2(void)
{
return 0;
}
#endif

View file

@ -36,7 +36,5 @@
int rtasm_cpu_has_sse(void);
int rtasm_cpu_has_sse2(void);
#endif /* _RTASM_CPU_H_ */