Commit 4598d32a authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

server: Remove dead check in is_cpu_supported().

parent eefc1c47
...@@ -1220,7 +1220,7 @@ int is_cpu_supported( enum cpu_type cpu ) ...@@ -1220,7 +1220,7 @@ int is_cpu_supported( enum cpu_type cpu )
{ {
unsigned int prefix_cpu_mask = get_prefix_cpu_mask(); 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)) if (!(supported_cpus & prefix_cpu_mask))
set_error( STATUS_NOT_SUPPORTED ); set_error( STATUS_NOT_SUPPORTED );
else if (supported_cpus & CPU_FLAG(cpu)) else if (supported_cpus & CPU_FLAG(cpu))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment