Changeset 364 in dev for trunk/abdev/BasicCompiler_Common/src/NativeCode.cpp
- Timestamp:
- Nov 11, 2007, 3:12:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/NativeCode.cpp
r357 r364 43 43 if( scheduleType == Schedule::CatchAddress ) 44 44 { 45 PutCatchAddressSchedule( &UserProc::CompilingUserProc(), l ); 45 const UserProc *pUserProc = &UserProc::CompilingUserProc(); 46 if( UserProc::IsGlobalAreaCompiling() ) 47 { 48 pUserProc = UserProc::pGlobalProc; 49 } 50 PutCatchAddressSchedule( pUserProc, l ); 46 51 } 47 52 else
Note:
See TracChangeset
for help on using the changeset viewer.