Bump version number

This commit is contained in:
drmortalwombat 2022-08-25 18:51:27 +02:00
parent 7dd8f4dae3
commit da2c0b44ad
4 changed files with 17 additions and 12 deletions

View File

@ -10688,7 +10688,7 @@ bool NativeCodeBasicBlock::FindSameBlocks(NativeCodeProcedure* nproc)
{ {
for (int i = 0; i < nproc->mBlocks.Size(); i++) for (int i = 0; i < nproc->mBlocks.Size(); i++)
{ {
if (nproc->mBlocks[i]->IsSame(this)) if (nproc->mBlocks[i] != this && nproc->mBlocks[i]->IsSame(this))
{ {
nproc->mBlocks[i]->mSameBlock = this; nproc->mBlocks[i]->mSameBlock = this;
changed = true; changed = true;
@ -10731,7 +10731,7 @@ bool NativeCodeBasicBlock::MergeSameBlocks(NativeCodeProcedure* nproc)
changed = true; changed = true;
} }
return true; return changed;
} }
bool NativeCodeBasicBlock::MergeBasicBlocks(void) bool NativeCodeBasicBlock::MergeBasicBlocks(void)
@ -12362,7 +12362,7 @@ bool NativeCodeBasicBlock::SimplifyLoopEnd(NativeCodeProcedure* proc)
if (mTrueJump && !mFalseJump && mTrueJump->mLoopHead) if (mTrueJump && !mFalseJump && mTrueJump->mLoopHead)
{ {
if (mTrueJump->mIns.Size() == 1 && mTrueJump->mFalseJump) if (mTrueJump->mIns.Size() == 1 && mTrueJump->mFalseJump && mTrueJump->mTrueJump != mTrueJump)
{ {
mIns.Push(mTrueJump->mIns[0]); mIns.Push(mTrueJump->mIns[0]);
mBranch = mTrueJump->mBranch; mBranch = mTrueJump->mBranch;
@ -27364,7 +27364,12 @@ void NativeCodeProcedure::Compile(InterCodeProcedure* proc)
Optimize(); Optimize();
assert(mEntryBlock->mIns.Size() == 0); if (mEntryBlock->mIns.Size() > 0)
{
NativeCodeBasicBlock* eblock = AllocateBlock();
eblock->mTrueJump = mEntryBlock;
mEntryBlock = eblock;
}
// Remove temporary RTS // Remove temporary RTS

View File

@ -74,7 +74,7 @@ int main2(int argc, const char** argv)
#else #else
strcpy(strProductName, "oscar64"); strcpy(strProductName, "oscar64");
strcpy(strProductVersion, "1.8.154"); strcpy(strProductVersion, "1.9.155");
#ifdef __APPLE__ #ifdef __APPLE__
uint32_t length = sizeof(basePath); uint32_t length = sizeof(basePath);

View File

@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,8,154,0 FILEVERSION 1,9,155,0
PRODUCTVERSION 1,8,154,0 PRODUCTVERSION 1,9,155,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -43,12 +43,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "oscar64" VALUE "CompanyName", "oscar64"
VALUE "FileDescription", "oscar64 compiler" VALUE "FileDescription", "oscar64 compiler"
VALUE "FileVersion", "1.8.154.0" VALUE "FileVersion", "1.9.155.0"
VALUE "InternalName", "oscar64.exe" VALUE "InternalName", "oscar64.exe"
VALUE "LegalCopyright", "Copyright (C) 2021" VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "oscar64.exe" VALUE "OriginalFilename", "oscar64.exe"
VALUE "ProductName", "oscar64" VALUE "ProductName", "oscar64"
VALUE "ProductVersion", "1.8.154.0" VALUE "ProductVersion", "1.9.155.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -4257,15 +4257,15 @@
{ {
"Name" = "8:Microsoft Visual Studio" "Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:oscar64" "ProductName" = "8:oscar64"
"ProductCode" = "8:{2B60A66D-2355-44A1-A18F-6D4FFB905B87}" "ProductCode" = "8:{87022324-8ABF-4A22-8C5D-3125AA498926}"
"PackageCode" = "8:{83F5E3A7-10BF-4D0E-AE7A-D51EBDB9A37E}" "PackageCode" = "8:{AAF69F45-4ADE-4083-899D-F91680C978F5}"
"UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}" "UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}"
"AspNetVersion" = "8:2.0.50727.0" "AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE" "RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE" "RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE" "InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.8.154" "ProductVersion" = "8:1.9.155"
"Manufacturer" = "8:oscar64" "Manufacturer" = "8:oscar64"
"ARPHELPTELEPHONE" = "8:" "ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:" "ARPHELPLINK" = "8:"