Changeset 50163 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jan 22, 2014 4:19:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r50162 r50163 1104 1104 AssertLogRelRCReturn(rc, rc); 1105 1105 1106 /** @cfgm{/CPUM/SSE4.1, boolean, false}1106 /** @cfgm{/CPUM/SSE4.1, boolean, true} 1107 1107 * Expose SSE4.1 to the guest if available. 1108 1108 */ 1109 1109 bool fSse41; 1110 rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.1", &fSse41, false);1110 rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.1", &fSse41, true); 1111 1111 AssertLogRelRCReturn(rc, rc); 1112 1112 1113 /** @cfgm{/CPUM/SSE4.2, boolean, false}1113 /** @cfgm{/CPUM/SSE4.2, boolean, true} 1114 1114 * Expose SSE4.2 to the guest if available. 1115 1115 */ 1116 1116 bool fSse42; 1117 rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.2", &fSse42, false);1117 rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.2", &fSse42, true); 1118 1118 AssertLogRelRCReturn(rc, rc); 1119 1119
Note:
See TracChangeset
for help on using the changeset viewer.