Changeset 392 in dev for trunk/abdev/BasicCompiler64/Compile_Var.cpp
- Timestamp:
- Feb 20, 2008, 7:44:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.