server: Remove dead check in is_cpu_supported().
Signed-off-by: Gerald Pfeifer <gerald@pfeifer.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
eefc1c471c
commit
4598d32ab4
|
@ -1220,7 +1220,7 @@ int is_cpu_supported( enum cpu_type cpu )
|
|||
{
|
||||
unsigned int prefix_cpu_mask = get_prefix_cpu_mask();
|
||||
|
||||
if (CPU_FLAG(cpu) && (supported_cpus & prefix_cpu_mask & CPU_FLAG(cpu))) return 1;
|
||||
if (supported_cpus & prefix_cpu_mask & CPU_FLAG(cpu)) return 1;
|
||||
if (!(supported_cpus & prefix_cpu_mask))
|
||||
set_error( STATUS_NOT_SUPPORTED );
|
||||
else if (supported_cpus & CPU_FLAG(cpu))
|
||||
|
|
Loading…
Reference in New Issue