Fix infinite loop eating the entry block
This commit is contained in:
parent
e6b865130a
commit
c98ff08f56
|
@ -12762,7 +12762,7 @@ bool NativeCodeBasicBlock::FindSameBlocks(NativeCodeProcedure* nproc)
|
|||
{
|
||||
mVisited = true;
|
||||
|
||||
if (!mSameBlock)
|
||||
if (!mSameBlock && this != mProc->mEntryBlock)
|
||||
{
|
||||
for (int i = 0; i < nproc->mBlocks.Size(); i++)
|
||||
{
|
||||
|
@ -40512,6 +40512,9 @@ void NativeCodeBasicBlock::CheckBlocks(bool sequence)
|
|||
if (!mVisited)
|
||||
{
|
||||
mVisited = true;
|
||||
|
||||
assert(this != mProc->mEntryBlock || mNumEntries < 2);
|
||||
|
||||
CheckLive();
|
||||
|
||||
if (sequence)
|
||||
|
@ -41823,6 +41826,7 @@ void NativeCodeProcedure::Optimize(void)
|
|||
|
||||
RebuildEntry();
|
||||
|
||||
assert(mEntryBlock->mNumEntries < 2);
|
||||
#if 1
|
||||
if (step > 3)
|
||||
{
|
||||
|
@ -41834,6 +41838,8 @@ void NativeCodeProcedure::Optimize(void)
|
|||
}
|
||||
}
|
||||
#endif
|
||||
RebuildEntry();
|
||||
assert(mEntryBlock->mNumEntries < 2);
|
||||
|
||||
if (step == 4)
|
||||
{
|
||||
|
@ -41848,6 +41854,7 @@ void NativeCodeProcedure::Optimize(void)
|
|||
}
|
||||
|
||||
RebuildEntry();
|
||||
assert(mEntryBlock->mNumEntries < 2);
|
||||
|
||||
#if 1
|
||||
if (step > 3)
|
||||
|
|
|
@ -74,7 +74,7 @@ int main2(int argc, const char** argv)
|
|||
|
||||
#else
|
||||
strcpy(strProductName, "oscar64");
|
||||
strcpy(strProductVersion, "1.26.219");
|
||||
strcpy(strProductVersion, "1.26.220");
|
||||
|
||||
#ifdef __APPLE__
|
||||
uint32_t length = sizeof(basePath);
|
||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,26,219,0
|
||||
PRODUCTVERSION 1,26,219,0
|
||||
FILEVERSION 1,26,220,0
|
||||
PRODUCTVERSION 1,26,220,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -43,12 +43,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "oscar64"
|
||||
VALUE "FileDescription", "oscar64 compiler"
|
||||
VALUE "FileVersion", "1.26.219.0"
|
||||
VALUE "FileVersion", "1.26.220.0"
|
||||
VALUE "InternalName", "oscar64.exe"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2021"
|
||||
VALUE "OriginalFilename", "oscar64.exe"
|
||||
VALUE "ProductName", "oscar64"
|
||||
VALUE "ProductVersion", "1.26.219.0"
|
||||
VALUE "ProductVersion", "1.26.220.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -5686,15 +5686,15 @@
|
|||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:oscar64"
|
||||
"ProductCode" = "8:{CBCAE13D-B17A-44B2-8FC3-38EE53B02C31}"
|
||||
"PackageCode" = "8:{75E5F5B4-AE17-4214-ADB6-18D9177E8E1B}"
|
||||
"ProductCode" = "8:{532AC6ED-3D25-48DC-91FD-DBE96AF0026F}"
|
||||
"PackageCode" = "8:{9C57F5C1-1D7C-4915-8DD9-DFE81E950DCA}"
|
||||
"UpgradeCode" = "8:{9AB61EFF-ACAC-4079-9950-8D96615CD4EF}"
|
||||
"AspNetVersion" = "8:2.0.50727.0"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:1.26.219"
|
||||
"ProductVersion" = "8:1.26.220"
|
||||
"Manufacturer" = "8:oscar64"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:"
|
||||
|
|
Loading…
Reference in New Issue