Changeset 183 in dev for trunk/abdev/BasicCompiler64/Compile_Func.cpp
- Timestamp:
- Jun 24, 2007, 6:50:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Func.cpp
r159 r183 1 #include <jenga/include/smoothie/Smoothie.h> 2 1 3 #include "../BasicCompiler_Common/common.h" 2 4 #include "Opcode.h" … … 30 32 tempParm=temp2; 31 33 32 type.SetType( DEF_OBJECT, pobj_DBClass->GetStringClassPtr() );34 type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() ); 33 35 } 34 36 … … 78 80 79 81 //オーバーロードを解決 80 pUserProc=OverloadSolution(name,subs,Smoothie:: meta.procPointers[ProcPtr_BaseIndex]->Params(), Type() );82 pUserProc=OverloadSolution(name,subs,Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() ); 81 83 82 84 if(!pUserProc){ … … 127 129 SetThisPtrToReg(REG_RCX); 128 130 129 pobj_c= pobj_CompilingClass;131 pobj_c=Smoothie::Temp::pCompilingClass; 130 132 } 131 133
Note:
See TracChangeset
for help on using the changeset viewer.