Changeset 65 in dev
- Timestamp:
- Mar 8, 2007, 4:45:58 AM (18 years ago)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Var.cpp
r64 r65 25 25 *pType = PTR_LEVEL_DOWN( *pType ); 26 26 27 i2=GetTypeSize(*pType, -1);27 i2=GetTypeSize(*pType,lpIndex); 28 28 if(i2>=2){ 29 29 //imul ebx,i2 -
BasicCompiler64/Compile_Var.cpp
r64 r65 43 43 *pType = PTR_LEVEL_DOWN( *pType ); 44 44 45 i2=GetTypeSize(*pType, -1);45 i2=GetTypeSize(*pType,lpIndex); 46 46 if(i2>=2){ 47 47 //imul reg,i2 -
BasicCompiler_Common/common.h
r64 r65 43 43 44 44 #ifdef _AMD64_ 45 #define VER_INFO "β1 3(x64)"45 #define VER_INFO "β14 (x64)" 46 46 #else 47 #define VER_INFO "β1 3"47 #define VER_INFO "β14" 48 48 #endif 49 49 -
BasicCompiler_Common/error.cpp
r64 r65 291 291 } 292 292 293 #ifndef _DEBUG294 if(num==300){295 //内部エラー296 return;297 }298 #endif299 300 293 if(!GetErrorMsg(num,KeyWord,temporary,pos)) return; 301 294 -
ProjectEditor/Common.h
r61 r65 59 59 #define APPLICATION_NAME "ActiveBasic 5.0" 60 60 #define VERSION_APPLI_NAME APPLICATION_NAME 61 #define VERSION_STRING "5.00.00 β1 3"61 #define VERSION_STRING "5.00.00 β14" 62 62 63 63 #endif
Note:
See TracChangeset
for help on using the changeset viewer.