Change all references to "__INTEL__" to "__i386__".
They are functionally identical, but the former is a BeOS/Haiku-specfic macro that we include in the compiler specs, and the latter is defined by GCC.
This commit is contained in:
@@ -534,7 +534,7 @@ extern status_t get_cpu_info(uint32 firstCPU, uint32 cpuCount,
|
||||
extern status_t get_cpu_topology_info(cpu_topology_node_info* topologyInfos,
|
||||
uint32* topologyInfoCount);
|
||||
|
||||
#if defined(__INTEL__) || defined(__x86_64__)
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
typedef union {
|
||||
struct {
|
||||
uint32 max_eax;
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
#if defined(__x86_64__)
|
||||
typedef struct x86_64_debug_cpu_state debug_cpu_state;
|
||||
#elif defined(__INTEL__)
|
||||
#elif defined(__i386__)
|
||||
typedef struct x86_debug_cpu_state debug_cpu_state;
|
||||
#elif defined(__POWERPC__)
|
||||
typedef struct ppc_debug_cpu_state debug_cpu_state;
|
||||
|
||||
Reference in New Issue
Block a user