Changeset 435 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Mar 15, 2008, 1:20:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/CodeGenerator.h
r370 r435 198 198 std::vector<long> continueCodePositions; 199 199 200 // コンパイル中のステップにおいて、構造体の一時オブジェクトの解放が必要かどうか 201 bool isNeedFreeTempStructureInCurrentStep; 202 200 203 public: 201 204 … … 215 218 CodeGenerator() 216 219 : pNativeCode( 0 ) 220 , isNeedFreeTempStructureInCurrentStep( false ) 217 221 { 218 222 } … … 294 298 void op_jmp_exitsub(); 295 299 void op_jmp_goto_schedule( const std::string &name, int lineNum, int sourceCodePos ); 300 void op_AddNeedFreeTempStructure( int reg ); 301 void op_FreeTempStructure(); 296 302 297 303
Note:
See TracChangeset
for help on using the changeset viewer.