Changeset 103375 in vbox
- Timestamp:
- Feb 14, 2024 10:14:09 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp
r103334 r103375 3230 3230 /* Double the buffer size till we meet the request. */ 3231 3231 uint32_t cNew = pReNative->cInstrBufAlloc; 3232 Assert Return(cNew > 0, NULL);3232 AssertStmt(cNew > 0, IEMNATIVE_DO_LONGJMP(pReNative, VERR_INTERNAL_ERROR_5)); /* impossible */ 3233 3233 do 3234 3234 cNew *= 2;
Note:
See TracChangeset
for help on using the changeset viewer.