mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 15:20:17 +01:00
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:
parent
4eaecd7965
commit
38dad17294
2 changed files with 0 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -36,7 +36,5 @@
|
|||
|
||||
int rtasm_cpu_has_sse(void);
|
||||
|
||||
int rtasm_cpu_has_sse2(void);
|
||||
|
||||
|
||||
#endif /* _RTASM_CPU_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue