cpu: remove obsolete SSE OS-support test
to use SSE you both need a CPU with the SSE feature, and an OS that has support for saving the SSE registers during context switches. whilst detecting SSE CPU support is easy via the `cpuid` instruction and checking flags, it is not easy to check for OS support which involves trying to use an SSE instruction in a process fork, and seeing whether or not this results in SIGILL. (thankfully cpu designers made things easier for AVX & AVX512). since SSE support has been around since 1999, and all operating systems from that time are long since unsupported, we should be able to safely assume now that SSE OS support is available and thus remove this check. note, the `vlc_CPU_check()` function is now only used for ppc and only with `CAN_COMPILE_ALTIVEC` so i've adjusted the preprocessor conditions accordingly.
Please register or sign in to comment