Changeset 35505 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jan 12, 2011 2:50:36 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69388
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp
r35490 r35505 1112 1112 dbgfR3RegValClear(pValue); 1113 1113 if (!pSubField) 1114 { 1114 1115 rc = pDesc->pfnGet(pSet->uUserArg.pv, pDesc, pValue); 1116 if ( pLookupRec->pAlias 1117 && pLookupRec->pAlias->enmType != enmValueType 1118 && RT_SUCCESS(rc)) 1119 { 1120 rc = dbgfR3RegValCast(pValue, enmValueType, pLookupRec->pAlias->enmType); 1121 enmValueType = pLookupRec->pAlias->enmType; 1122 } 1123 } 1115 1124 else 1116 1125 { … … 1123 1132 { 1124 1133 rc = pDesc->pfnGet(pSet->uUserArg.pv, pDesc, pValue); 1134 if ( pLookupRec->pAlias 1135 && pLookupRec->pAlias->enmType != enmValueType 1136 && RT_SUCCESS(rc)) 1137 { 1138 rc = dbgfR3RegValCast(pValue, enmValueType, pLookupRec->pAlias->enmType); 1139 enmValueType = pLookupRec->pAlias->enmType; 1140 } 1125 1141 if (RT_SUCCESS(rc)) 1126 1142 {
Note:
See TracChangeset
for help on using the changeset viewer.