Changeset 73 in dev for BasicCompiler32/NumOpe_Arithmetic.cpp
- Timestamp:
- Mar 16, 2007, 11:07:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/NumOpe_Arithmetic.cpp
r67 r73 270 270 271 271 //call _allmul 272 extern S UBINFO*pSub_allmul;272 extern SubInfo *pSub_allmul; 273 273 op_call(pSub_allmul); 274 274 … … 460 460 461 461 //call _aullrem 462 extern S UBINFO*pSub_aullrem;462 extern SubInfo *pSub_aullrem; 463 463 op_call(pSub_aullrem); 464 464 } … … 467 467 468 468 //call _allrem 469 extern S UBINFO*pSub_allrem;469 extern SubInfo *pSub_allrem; 470 470 op_call(pSub_allrem); 471 471 } … … 720 720 721 721 //call _aulldiv 722 extern S UBINFO*pSub_aulldiv;722 extern SubInfo *pSub_aulldiv; 723 723 op_call(pSub_aulldiv); 724 724 } … … 727 727 728 728 //call _alldiv 729 extern S UBINFO*pSub_alldiv;729 extern SubInfo *pSub_alldiv; 730 730 op_call(pSub_alldiv); 731 731 } … … 1000 1000 1001 1001 //call pow 1002 extern S UBINFO*pSub_pow;1002 extern SubInfo *pSub_pow; 1003 1003 op_call(pSub_pow); 1004 1004 … … 1156 1156 1157 1157 //call _allshl 1158 extern S UBINFO*pSub_allshl;1158 extern SubInfo *pSub_allshl; 1159 1159 op_call(pSub_allshl); 1160 1160 … … 1361 1361 1362 1362 //call _aullshr 1363 extern S UBINFO*pSub_aullshr;1363 extern SubInfo *pSub_aullshr; 1364 1364 op_call(pSub_aullshr); 1365 1365 } … … 1368 1368 1369 1369 //call _allshr 1370 extern S UBINFO*pSub_allshr;1370 extern SubInfo *pSub_allshr; 1371 1371 op_call(pSub_allshr); 1372 1372 }
Note:
See TracChangeset
for help on using the changeset viewer.