Changeset 392 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Feb 20, 2008, 7:44:27 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r370 r392 389 389 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 390 390 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 391 pVar-> bLiving=TRUE;391 pVar->isLiving = true; 392 392 393 393 pUserProc->GetLocalVars().push_back( pVar ); -
trunk/abdev/BasicCompiler32/Compile_Var.cpp
r370 r392 1128 1128 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1129 1129 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1130 pVar-> bLiving=TRUE;1130 pVar->isLiving = true; 1131 1131 1132 1132 //エラー用 … … 1163 1163 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1164 1164 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1165 pVar-> bLiving=TRUE;1165 pVar->isLiving = true; 1166 1166 1167 1167 if(InitBuf[0]){
Note:
See TracChangeset
for help on using the changeset viewer.