Changeset 537 in dev for trunk/ab5.0/abdev/compiler_x86/Compile_ProcOp.cpp
- Timestamp:
- May 3, 2008, 6:58:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_ProcOp.cpp
r536 r537 32 32 33 33 const UserProc *pBackUserProc; 34 pBackUserProc = & UserProc::CompilingUserProc();35 UserProc::CompileStartForGlobalArea();34 pBackUserProc = &compiler.GetCompilingUserProc(); 35 compiler.StartGlobalAreaCompile(); 36 36 37 37 int BackCp; … … 57 57 GetGlobalDataForDll(); 58 58 59 UserProc::CompileStartForUserProc( pBackUserProc );59 compiler.SetCompilingUserProc( pBackUserProc ); 60 60 cp=BackCp; 61 61 … … 89 89 90 90 const UserProc *pBackUserProc; 91 pBackUserProc = & UserProc::CompilingUserProc();92 UserProc::CompileStartForGlobalArea();91 pBackUserProc = &compiler.GetCompilingUserProc(); 92 compiler.StartGlobalAreaCompile(); 93 93 94 94 compiler.codeGenerator.lexicalScopes.CallDestructorsOfScopeEnd(); 95 95 96 UserProc::CompileStartForUserProc( pBackUserProc );96 compiler.SetCompilingUserProc( pBackUserProc ); 97 97 98 98 … … 225 225 UserProc::pGlobalProc = &userProc; 226 226 227 const UserProc *pBackUserProc = & UserProc::CompilingUserProc();228 UserProc::CompileStartForGlobalArea();227 const UserProc *pBackUserProc = &compiler.GetCompilingUserProc(); 228 compiler.StartGlobalAreaCompile(); 229 229 230 230 int BackCp = cp; … … 250 250 } 251 251 252 UserProc::CompileStartForUserProc( pBackUserProc );252 compiler.SetCompilingUserProc( pBackUserProc ); 253 253 cp=BackCp; 254 254 }
Note:
See TracChangeset
for help on using the changeset viewer.