Ignore:
Timestamp:
Mar 27, 2008, 3:04:28 AM (16 years ago)
Author:
dai_9181
Message:

64bit版を最新の状態にした

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler64/Compile_Func.cpp

    r463 r468  
    110110                    || type.IsObjectPtr() && referenceKind == RefPointer ) )
    111111                {
    112                     SetError(104,ObjectName,cp);
     112                    compiler.errorMessenger.Output(104,ObjectName,cp);
    113113                }
    114114
     
    149149            if( vtblMasterListIndex != 0 )
    150150            {
    151                 SetError();
     151                compiler.errorMessenger.OutputFatalError();
    152152            }
    153153        }
     
    248248        {
    249249            extern int cp;
    250             SetError(1,NULL,cp);
     250            compiler.errorMessenger.Output(1,NULL,cp);
    251251            return;
    252252        }
     
    312312        GetOverloadSubHash( name, subs );
    313313        if( subs.size() == 0 ){
    314             SetError(27,name,cp);
     314            compiler.errorMessenger.Output(27,name,cp);
    315315            return;
    316316        }
     
    332332                    ) )
    333333                {
    334                     SetError(67, name, cp );
     334                    compiler.errorMessenger.Output(67, name, cp );
    335335                }
    336336            }
     
    343343                    ) )
    344344                {
    345                     SetError(66, name, cp );
     345                    compiler.errorMessenger.Output(66, name, cp );
    346346                }
    347347            }
     
    349349
    350350        if(!pUserProc){
    351             SetError(27,name,cp);
     351            compiler.errorMessenger.Output(27,name,cp);
    352352            return;
    353353        }
     
    356356        pUserProc=GetSubHash(name);
    357357        if(!pUserProc){
    358             SetError(27,name,cp);
     358            compiler.errorMessenger.Output(27,name,cp);
    359359            return;
    360360        }
     
    383383    Type tempType;
    384384    if( !compiler.StringToType( typeName, tempType ) ){
    385         SetError(3,typeName,cp);
     385        compiler.errorMessenger.Output(3,typeName,cp);
    386386        return;
    387387    }
     
    424424        compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_RAX, REG_RAX, 0, MOD_BASE );
    425425
    426         SetError(-120,NULL,cp);
     426        compiler.errorMessenger.Output(-120,NULL,cp);
    427427    }*/
    428428}
     
    460460    }
    461461    else{
    462         SetError(134,NULL,cp );
     462        compiler.errorMessenger.Output(134,NULL,cp );
    463463    }
    464464}
     
    545545    }
    546546    if(!tempType.IsWhole()){
    547         SetError(11,Parameter,cp);
     547        compiler.errorMessenger.Output(11,Parameter,cp);
    548548        return;
    549549    }
Note: See TracChangeset for help on using the changeset viewer.