Ignore:
Timestamp:
May 10, 2008, 12:19:15 PM (16 years ago)
Author:
dai_9181
Message:

[530][583]を64bit版にマージ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/Compile_Statement.cpp

    r468 r584  
    640640
    641641void OpcodeExitSub(void){
    642     if( UserProc::IsGlobalAreaCompiling() ){
     642    if( compiler.IsGlobalAreaCompiling() ){
    643643        compiler.errorMessenger.Output(12,"Exit Sub/Function",cp);
    644644        return;
     
    917917}
    918918void OpcodeReturn(char *Parameter){
    919     if( UserProc::IsGlobalAreaCompiling() ){
     919    if( compiler.IsGlobalAreaCompiling() ){
    920920        compiler.errorMessenger.Output(62,NULL,cp);
    921921    }
     
    923923        //戻り値をセット
    924924        if(Parameter[0]){
    925             const UserProc &proc = UserProc::CompilingUserProc();
     925            const UserProc &proc = compiler.GetCompilingUserProc();
    926926
    927927            const char *temp = "_System_ReturnValue";
Note: See TracChangeset for help on using the changeset viewer.