Changeset 290 in dev for trunk/abdev/BasicCompiler32/OperatorProc.cpp
- Timestamp:
- Aug 21, 2007, 11:00:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/OperatorProc.cpp
r225 r290 79 79 for(int i=0;i<(int)params.size();i++){ 80 80 CheckDifferentType( 81 pUserProc->Params()[i]->GetBasicType(), 82 pUserProc->Params()[i]->GetIndex(), 83 params[i]->GetBasicType(), 84 params[i]->GetIndex(), 81 *pUserProc->Params()[i], 82 *params[i], 85 83 "", 86 84 i); … … 91 89 } 92 90 93 int right_side_size = GetTypeSize(type_stack[sp-1],index_stack[sp-1]);91 int right_side_size = Type(type_stack[sp-1],index_stack[sp-1]).GetSize(); 94 92 95 93 if(bTwoTerm){ … … 261 259 } 262 260 263 Opcode_CallProc(Parameter,subs[0],0,ObjectName ,DEF_OBJECT);261 Opcode_CallProc(Parameter,subs[0],0,ObjectName); 264 262 resultType = subs[0]->ReturnType(); 265 263 }
Note:
See TracChangeset
for help on using the changeset viewer.