Changeset 392 in dev for trunk/abdev/BasicCompiler64
- Timestamp:
- Feb 20, 2008, 7:44:27 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_ProcOp.cpp
r370 r392 344 344 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 345 345 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 346 pVar-> bLiving=TRUE;346 pVar->isLiving = true; 347 347 348 348 pUserProc->GetLocalVars().push_back( pVar ); -
trunk/abdev/BasicCompiler64/Compile_Var.cpp
r370 r392 1140 1140 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1141 1141 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1142 pVar-> bLiving=TRUE;1142 pVar->isLiving = true; 1143 1143 1144 1144 //エラー用 … … 1175 1175 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1176 1176 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1177 pVar-> bLiving=TRUE;1177 pVar->isLiving = true; 1178 1178 1179 1179 if(InitBuf[0]){
Note:
See TracChangeset
for help on using the changeset viewer.