Changeset 9280 in vbox for trunk/src/VBox
- Timestamp:
- Jun 2, 2008 8:06:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r9212 r9280 279 279 } 280 280 #ifdef IN_GC 281 Assert (!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */281 AssertMsg(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange), ("pRange = %VGv\n", pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 282 282 #endif 283 283 … … 426 426 } 427 427 #ifdef IN_GC 428 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR) pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */428 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 429 429 #endif 430 430 … … 549 549 } 550 550 #ifdef IN_GC 551 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR) pRange));551 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); 552 552 #endif 553 553 … … 673 673 } 674 674 #ifdef IN_GC 675 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR) pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */675 Assert(!pRange || MMHyperIsInsideArea(pVM, (RTGCPTR)(RTRCUINTPTR)pRange)); /** @todo r=bird: there is a macro for this which skips the #if'ing. */ 676 676 #endif 677 677
Note:
See TracChangeset
for help on using the changeset viewer.