Changeset 62373 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 20, 2016 5:31:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllAImplC.cpp
r62371 r62373 1221 1221 RTUINT128U Remainder; 1222 1222 RTUINT128U Quotient; 1223 # ifdef __GNUC__ /* GCC maybe really annoying in function. */ 1224 Quotient.s.Lo = 0; 1225 Quotient.s.Hi = 0; 1226 # endif 1223 1227 RTUInt128DivRem(&Quotient, &Remainder, &Dividend, &Divisor); 1224 1228 Assert(Quotient.s.Hi == 0); … … 1265 1269 RTUINT128U Remainder; 1266 1270 RTUINT128U Quotient; 1271 # ifdef __GNUC__ /* GCC maybe really annoying in function. */ 1272 Quotient.s.Lo = 0; 1273 Quotient.s.Hi = 0; 1274 # endif 1267 1275 RTUInt128DivRem(&Quotient, &Remainder, &Dividend, &Divisor); 1268 1276
Note:
See TracChangeset
for help on using the changeset viewer.