Changeset 468 in dev for trunk/ab5.0/abdev/BasicCompiler64/Compile_Func.cpp
- Timestamp:
- Mar 27, 2008, 3:04:28 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler64/Compile_Func.cpp
r463 r468 110 110 || type.IsObjectPtr() && referenceKind == RefPointer ) ) 111 111 { 112 SetError(104,ObjectName,cp);112 compiler.errorMessenger.Output(104,ObjectName,cp); 113 113 } 114 114 … … 149 149 if( vtblMasterListIndex != 0 ) 150 150 { 151 SetError();151 compiler.errorMessenger.OutputFatalError(); 152 152 } 153 153 } … … 248 248 { 249 249 extern int cp; 250 SetError(1,NULL,cp);250 compiler.errorMessenger.Output(1,NULL,cp); 251 251 return; 252 252 } … … 312 312 GetOverloadSubHash( name, subs ); 313 313 if( subs.size() == 0 ){ 314 SetError(27,name,cp);314 compiler.errorMessenger.Output(27,name,cp); 315 315 return; 316 316 } … … 332 332 ) ) 333 333 { 334 SetError(67, name, cp );334 compiler.errorMessenger.Output(67, name, cp ); 335 335 } 336 336 } … … 343 343 ) ) 344 344 { 345 SetError(66, name, cp );345 compiler.errorMessenger.Output(66, name, cp ); 346 346 } 347 347 } … … 349 349 350 350 if(!pUserProc){ 351 SetError(27,name,cp);351 compiler.errorMessenger.Output(27,name,cp); 352 352 return; 353 353 } … … 356 356 pUserProc=GetSubHash(name); 357 357 if(!pUserProc){ 358 SetError(27,name,cp);358 compiler.errorMessenger.Output(27,name,cp); 359 359 return; 360 360 } … … 383 383 Type tempType; 384 384 if( !compiler.StringToType( typeName, tempType ) ){ 385 SetError(3,typeName,cp);385 compiler.errorMessenger.Output(3,typeName,cp); 386 386 return; 387 387 } … … 424 424 compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_RAX, REG_RAX, 0, MOD_BASE ); 425 425 426 SetError(-120,NULL,cp);426 compiler.errorMessenger.Output(-120,NULL,cp); 427 427 }*/ 428 428 } … … 460 460 } 461 461 else{ 462 SetError(134,NULL,cp );462 compiler.errorMessenger.Output(134,NULL,cp ); 463 463 } 464 464 } … … 545 545 } 546 546 if(!tempType.IsWhole()){ 547 SetError(11,Parameter,cp);547 compiler.errorMessenger.Output(11,Parameter,cp); 548 548 return; 549 549 }
Note:
See TracChangeset
for help on using the changeset viewer.