ntdll: Remove Alpha support.

This commit is contained in:
André Hentschel 2011-04-19 19:26:57 +02:00 committed by Alexandre Julliard
parent 71af7f1ffa
commit 6f9d1840ef
2 changed files with 0 additions and 4 deletions

View File

@ -929,8 +929,6 @@ void fill_cpu_info(void)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_PPC;
#elif defined(__arm__)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_ARM;
#elif defined(__ALPHA__)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_ALPHA;
#elif defined(__sparc__)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_SPARC;
#else

View File

@ -90,8 +90,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(server);
static const enum cpu_type client_cpu = CPU_x86;
#elif defined(__x86_64__)
static const enum cpu_type client_cpu = CPU_x86_64;
#elif defined(__ALPHA__)
static const enum cpu_type client_cpu = CPU_ALPHA;
#elif defined(__powerpc__)
static const enum cpu_type client_cpu = CPU_POWERPC;
#elif defined(__sparc__)