Changeset 87255 in vbox
- Timestamp:
- Jan 14, 2021 11:20:17 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/VBox/vmm/cpum.h (modified) (1 diff)
-
src/VBox/VMM/VMMR3/CPUMR3Db.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r87040 r87255 32 32 #include <iprt/x86.h> 33 33 #include <VBox/types.h> 34 #if def RT_ARCH_AMD6434 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_ARM64) 35 35 # include <VBox/vmm/cpumctx.h> 36 36 #endif -
trunk/src/VBox/VMM/VMMR3/CPUMR3Db.cpp
r85578 r87255 27 27 28 28 #include <VBox/err.h> 29 #include <iprt/asm-amd64-x86.h> 29 #if !defined(RT_ARCH_ARM64) 30 # include <iprt/asm-amd64-x86.h> 31 #endif 30 32 #include <iprt/mem.h> 31 33 #include <iprt/string.h> … … 895 897 896 898 if (!strcmp(pszName, "host")) 899 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 897 900 { 898 901 /* … … 991 994 } 992 995 else 996 #else 997 pszName = g_apCpumDbEntries[0]->pszName; /* Just pick the first entry for non-x86 hosts. */ 998 #endif 993 999 { 994 1000 /*
Note:
See TracChangeset
for help on using the changeset viewer.

