Changeset 85187 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 10, 2020 1:24:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r84458 r85187 148 148 /** Drag in necessary library bits. 149 149 * The runtime lives here (in VMMR0.r0) and VBoxDD*R0.r0 links against us. */ 150 PFNRTg_VMMR0Deps[] =151 { 152 (PFNRT)RTCrc32,153 (PFNRT)RTOnce,150 struct CLANG11WEIRDNOTHROW { PFNRT pfn; } g_VMMR0Deps[] = 151 { 152 { (PFNRT)RTCrc32 }, 153 { (PFNRT)RTOnce }, 154 154 #if defined(RT_ARCH_X86) && (defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)) 155 (PFNRT)__udivdi3,156 (PFNRT)__umoddi3,157 #endif 158 NULL155 { (PFNRT)__udivdi3 }, 156 { (PFNRT)__umoddi3 }, 157 #endif 158 { NULL } 159 159 }; 160 160
Note:
See TracChangeset
for help on using the changeset viewer.