Changeset 73 in dev for BasicCompiler64/Compile_Object.cpp
- Timestamp:
- Mar 16, 2007, 11:07:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_Object.cpp
r64 r73 32 32 //////////////////////// 33 33 34 std::vector<S UBINFO*> subs;34 std::vector<SubInfo *> subs; 35 35 pobj_c->EnumMethod( pobj_c->name, subs ); 36 36 37 S UBINFO*psi;37 SubInfo *psi; 38 38 if( subs.size() > 0 ){ 39 39 //オーバーロードを解決 … … 121 121 122 122 //call _System_GC_malloc_ForObject 123 extern S UBINFO*pSub_System_GC_malloc_ForObject;123 extern SubInfo *pSub_System_GC_malloc_ForObject; 124 124 op_call(pSub_System_GC_malloc_ForObject); 125 125 } … … 128 128 129 129 //call _System_GC_malloc_ForObjectPtr 130 extern S UBINFO*pSub_System_GC_malloc_ForObjectPtr;130 extern SubInfo *pSub_System_GC_malloc_ForObjectPtr; 131 131 op_call(pSub_System_GC_malloc_ForObjectPtr); 132 132 } … … 328 328 if( isSweeping ){ 329 329 //call _System_GC_free_for_SweepingDelete 330 extern S UBINFO*pSub_System_GC_free_for_SweepingDelete;330 extern SubInfo *pSub_System_GC_free_for_SweepingDelete; 331 331 op_call(pSub_System_GC_free_for_SweepingDelete); 332 332 } 333 333 else{ 334 334 //call free 335 extern S UBINFO*pSub_free;335 extern SubInfo *pSub_free; 336 336 op_call(pSub_free); 337 337 }
Note:
See TracChangeset
for help on using the changeset viewer.