Changeset 256 in dev for trunk/abdev/BasicCompiler_Common/Debug.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Debug.cpp
r233 r256 230 230 } 231 231 UserProc *GetSubFromObp(ULONG_PTR pos){ 232 compiler. GetMeta().GetUserProcs().Iterator_Reset();233 while( compiler. GetMeta().GetUserProcs().Iterator_HasNext() )232 compiler.objectModule.meta.GetUserProcs().Iterator_Reset(); 233 while( compiler.objectModule.meta.GetUserProcs().Iterator_HasNext() ) 234 234 { 235 UserProc *pUserProc = compiler. GetMeta().GetUserProcs().Iterator_GetNext();235 UserProc *pUserProc = compiler.objectModule.meta.GetUserProcs().Iterator_GetNext(); 236 236 237 237 if(rva_to_real(pUserProc->GetBeginOpAddress()) <= pos &&
Note:
See TracChangeset
for help on using the changeset viewer.