Changeset 537 in dev for trunk/ab5.0/abdev/compiler_x86/Compile_Statement.cpp
- Timestamp:
- May 3, 2008, 6:58:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_Statement.cpp
r465 r537 893 893 894 894 void OpcodeExitSub(void){ 895 if( UserProc::IsGlobalAreaCompiling() ){895 if( compiler.IsGlobalAreaCompiling() ){ 896 896 compiler.errorMessenger.Output(12,"Exit Sub/Function",cp); 897 897 return; … … 1231 1231 } 1232 1232 void OpcodeReturn(char *Parameter){ 1233 if( UserProc::IsGlobalAreaCompiling() ){1233 if( compiler.IsGlobalAreaCompiling() ){ 1234 1234 //Gosub~Returnとして扱う 1235 1235 … … 1240 1240 //戻り値をセット 1241 1241 if(Parameter[0]){ 1242 const UserProc &proc = UserProc::CompilingUserProc();1242 const UserProc &proc = compiler.GetCompilingUserProc(); 1243 1243 1244 1244 const char *temp = "_System_ReturnValue";
Note:
See TracChangeset
for help on using the changeset viewer.