Changeset 580 in dev for trunk/ab5.0/abdev/compiler_x86
- Timestamp:
- May 8, 2008, 3:36:08 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/compiler_x86
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_ProcOp.cpp
r565 r580 352 352 Parameter ¶m = *pUserProc->RealParams()[i3]; 353 353 354 Variable *pVar = new Variable( param.GetVarName(), param, false, param.IsRef(), "", false ); 354 Variable *pVar = new Variable( 355 ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( param.GetVarName().c_str() ), 356 param, 357 false, 358 param.IsRef(), 359 "", 360 false 361 ); 355 362 356 363 if( param.IsArray() ){ -
trunk/ab5.0/abdev/compiler_x86/Compile_Var.cpp
r570 r580 1118 1118 bool isConst = ( dwFlags & DIMFLAG_CONST ) ? true:false; 1119 1119 1120 Variable *pVar = new Variable( VarName, type, isConst, false, ConstractParameter, false ); 1120 Variable *pVar = new Variable( 1121 ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( VarName ), 1122 type, 1123 isConst, 1124 false, 1125 ConstractParameter, 1126 false 1127 ); 1121 1128 1122 1129 if( subscripts.size() > 0 ){
Note:
See TracChangeset
for help on using the changeset viewer.