Changeset 96048 in vbox
- Timestamp:
- Aug 5, 2022 9:55:40 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllAImplC.cpp
r96046 r96048 12472 12472 IEM_DECL_IMPL_DEF(void, iemAImpl_vphaddw_u128_fallback,(PRTUINT128U puDst, PCRTUINT128U puSrc1, PCRTUINT128U puSrc2)) 12473 12473 { 12474 RTUINT128U uDst = { 0 }; /* Shut up MSVC. *//* puDst can be the same as one of the source operands. */12474 RTUINT128U uDst; /* puDst can be the same as one of the source operands. */ 12475 12475 12476 12476 uDst.ai16[0] = puSrc1->ai16[0] + puSrc1->ai16[1]; … … 12491 12491 IEM_DECL_IMPL_DEF(void, iemAImpl_vphaddw_u256_fallback,(PRTUINT256U puDst, PCRTUINT256U puSrc1, PCRTUINT256U puSrc2)) 12492 12492 { 12493 RTUINT256U uDst = { 0 }; /* Shut up MSVC. *//* puDst can be the same as one of the source operands. */12493 RTUINT256U uDst; /* puDst can be the same as one of the source operands. */ 12494 12494 12495 12495 uDst.ai16[ 0] = puSrc1->ai16[ 0] + puSrc1->ai16[ 1]; … … 12520 12520 IEM_DECL_IMPL_DEF(void, iemAImpl_vphaddd_u128_fallback,(PRTUINT128U puDst, PCRTUINT128U puSrc1, PCRTUINT128U puSrc2)) 12521 12521 { 12522 RTUINT128U uDst = { 0 }; /* Shut up MSVC. *//* puDst can be the same as one of the source operands. */12522 RTUINT128U uDst; /* puDst can be the same as one of the source operands. */ 12523 12523 12524 12524 uDst.ai32[0] = puSrc1->ai32[0] + puSrc1->ai32[1]; … … 12535 12535 IEM_DECL_IMPL_DEF(void, iemAImpl_vphaddd_u256_fallback,(PRTUINT256U puDst, PCRTUINT256U puSrc1, PCRTUINT256U puSrc2)) 12536 12536 { 12537 RTUINT256U uDst = { 0 }; /* Shut up MSVC. *//* puDst can be the same as one of the source operands. */12537 RTUINT256U uDst; /* puDst can be the same as one of the source operands. */ 12538 12538 12539 12539 uDst.ai32[0] = puSrc1->ai32[ 0] + puSrc1->ai32[ 1];
Note:
See TracChangeset
for help on using the changeset viewer.