Ignore:
Timestamp:
Aug 4, 2007, 4:36:34 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp

    r259 r262  
    237237
    238238    //ラベル用のメモリを確保
    239     extern LABEL *pLabelNames;
    240     extern int MaxLabelNum;
    241     pLabelNames=(LABEL *)HeapAlloc(hHeap,0,1);
    242     MaxLabelNum=0;
     239    compiler.codeGenerator.gotoLabels.clear();
    243240
    244241    //Gotoラベルスケジュール
     
    565562    }
    566563
    567     //ラベル用のメモリを解放
    568     for(i3=0;i3<MaxLabelNum;i3++){
    569         if(pLabelNames[i3].pName) HeapDefaultFree(pLabelNames[i3].pName);
    570     }
    571     HeapDefaultFree(pLabelNames);
    572 
    573564    //With情報のメモリを解放
    574565    for(i3=0;i3<WithInfo.num;i3++){
Note: See TracChangeset for help on using the changeset viewer.