Changeset 319 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Sep 9, 2007, 12:37:48 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/ParamImpl.cpp
r290 r319 42 42 for(i++,i2++;;i++,i2++){ 43 43 temporary[i2]=buffer[i]; 44 if( buffer[i] == '\0' ) 45 { 46 SetError(); 47 break; 48 } 44 49 if(buffer[i]=='\"') break; 45 50 } -
trunk/abdev/BasicCompiler_Common/Subroutine.cpp
r316 r319 494 494 pSub_System_Call_Destructor_of_GlobalObject->CompleteCompile(); 495 495 496 // _System_CGarbageCollection.RegisterGlobalRootsは一番最後にコンパイル 497 extern const UserProc *pUserProc_System_CGarbageCollection_RegisterGlobalRoots; 498 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->CompleteCompile(); 499 496 500 repeat: 497 501 compiler.GetObjectModule().meta.GetUserProcs().Iterator_Reset(); … … 531 535 pSub_System_Call_Destructor_of_GlobalObject->KillCompileStatus(); 532 536 CompileBufferInProcedure( *pSub_System_Call_Destructor_of_GlobalObject ); 533 } 534 } 537 538 // _System_CGarbageCollection.RegisterGlobalRootsは一番最後にコンパイル 539 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->KillCompileStatus(); 540 CompileBufferInProcedure( *pUserProc_System_CGarbageCollection_RegisterGlobalRoots ); 541 } 542 }
Note:
See TracChangeset
for help on using the changeset viewer.