Changeset 262 in dev for trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp
- Timestamp:
- Aug 4, 2007, 4:36:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp
r259 r262 237 237 238 238 //ラベル用のメモリを確保 239 extern LABEL *pLabelNames; 240 extern int MaxLabelNum; 241 pLabelNames=(LABEL *)HeapAlloc(hHeap,0,1); 242 MaxLabelNum=0; 239 compiler.codeGenerator.gotoLabels.clear(); 243 240 244 241 //Gotoラベルスケジュール … … 565 562 } 566 563 567 //ラベル用のメモリを解放568 for(i3=0;i3<MaxLabelNum;i3++){569 if(pLabelNames[i3].pName) HeapDefaultFree(pLabelNames[i3].pName);570 }571 HeapDefaultFree(pLabelNames);572 573 564 //With情報のメモリを解放 574 565 for(i3=0;i3<WithInfo.num;i3++){
Note:
See TracChangeset
for help on using the changeset viewer.