Changeset 206 in dev for trunk/abdev/BasicCompiler32/NumOpe_Arithmetic.cpp
- Timestamp:
- Jul 12, 2007, 2:58:26 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/NumOpe_Arithmetic.cpp
r75 r206 1 #include "stdafx.h" 2 1 3 #include "../BasicCompiler_Common/common.h" 2 4 #include "Opcode.h" … … 270 272 271 273 //call _allmul 272 extern UserProc *pSub_allmul;274 extern const UserProc *pSub_allmul; 273 275 op_call(pSub_allmul); 274 276 … … 460 462 461 463 //call _aullrem 462 extern UserProc *pSub_aullrem;464 extern const UserProc *pSub_aullrem; 463 465 op_call(pSub_aullrem); 464 466 } … … 467 469 468 470 //call _allrem 469 extern UserProc *pSub_allrem;471 extern const UserProc *pSub_allrem; 470 472 op_call(pSub_allrem); 471 473 } … … 720 722 721 723 //call _aulldiv 722 extern UserProc *pSub_aulldiv;724 extern const UserProc *pSub_aulldiv; 723 725 op_call(pSub_aulldiv); 724 726 } … … 727 729 728 730 //call _alldiv 729 extern UserProc *pSub_alldiv;731 extern const UserProc *pSub_alldiv; 730 732 op_call(pSub_alldiv); 731 733 } … … 1000 1002 1001 1003 //call pow 1002 extern UserProc *pSub_pow;1004 extern const UserProc *pSub_pow; 1003 1005 op_call(pSub_pow); 1004 1006 … … 1156 1158 1157 1159 //call _allshl 1158 extern UserProc *pSub_allshl;1160 extern const UserProc *pSub_allshl; 1159 1161 op_call(pSub_allshl); 1160 1162 … … 1361 1363 1362 1364 //call _aullshr 1363 extern UserProc *pSub_aullshr;1365 extern const UserProc *pSub_aullshr; 1364 1366 op_call(pSub_aullshr); 1365 1367 } … … 1368 1370 1369 1371 //call _allshr 1370 extern UserProc *pSub_allshr;1372 extern const UserProc *pSub_allshr; 1371 1373 op_call(pSub_allshr); 1372 1374 }
Note:
See TracChangeset
for help on using the changeset viewer.