Changeset 38620 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
- Timestamp:
- Sep 3, 2011 8:01:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r38619 r38620 2834 2834 static void rtDwarfInfo_InitDie(PRTDWARFDIE pDie, PCRTDWARFDIEDESC pDieDesc) 2835 2835 { 2836 uint32_t i = pDieDesc->cAttributes;2836 size_t i = pDieDesc->cAttributes; 2837 2837 while (i-- > 0) 2838 2838 { … … 3030 3030 /* Look up the attribute in the descriptor and invoke the decoder. */ 3031 3031 PCRTDWARFATTRDESC pAttr = NULL; 3032 uint32_t i = pDieDesc->cAttributes;3032 size_t i = pDieDesc->cAttributes; 3033 3033 while (i-- > 0) 3034 3034 if (pDieDesc->paAttributes[i].uAttr == uAttr) … … 3099 3099 if (offAbbrev > UINT32_MAX) 3100 3100 return VERR_DWARF_BAD_INFO; 3101 rtDwarfAbbrev_SetUnitOffset(pThis, offAbbrev);3101 rtDwarfAbbrev_SetUnitOffset(pThis, (uint32_t)offAbbrev); 3102 3102 pCursor->cbNativeAddr = cbNativeAddr; 3103 3103 … … 3126 3126 pUnit->offAbbrev = offAbbrev; 3127 3127 pUnit->cbNativeAddr = cbNativeAddr; 3128 pUnit->uDwarfVer = uVer;3128 pUnit->uDwarfVer = (uint8_t)uVer; 3129 3129 RTListAppend(&pThis->CompileUnitList, &pUnit->Core.SiblingNode); 3130 3130
Note:
See TracChangeset
for help on using the changeset viewer.