Changeset 94 in dev for BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- Apr 14, 2007, 8:36:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Subroutine.cpp
r88 r94 792 792 Smoothie::Meta::procPointers.clear(); 793 793 } 794 795 796 797 bool IsNeedProcCompile(){ 798 for(int i2=0;i2<MAX_HASH;i2++){ 799 extern UserProc **ppSubHash; 800 UserProc *pUserProc=ppSubHash[i2]; 801 while(pUserProc){ 802 if( pUserProc->IsUsing() && pUserProc->IsCompiled() == false ){ 803 return true; 804 } 805 806 pUserProc=pUserProc->pNextData; 807 } 808 } 809 return false; 810 }
Note:
See TracChangeset
for help on using the changeset viewer.