PPTC version bump

This commit is contained in:
Gabriel A 2024-06-16 21:40:05 -03:00
parent 8a38a6a87c
commit 3a3f2be008
2 changed files with 1 additions and 15 deletions

View file

@ -85,20 +85,6 @@ namespace ARMeilleure.CodeGen.RegisterAllocators
CopySource = copySource;
}
public bool TryGetCopySource(out LiveInterval copySource)
{
if (CopySource._data != null)
{
copySource = CopySource;
return true;
}
copySource = default;
return false;
}
public bool TryGetCopySourceRegister(out int copySourceRegIndex)
{
if (CopySource._data != null)

View file

@ -29,7 +29,7 @@ namespace ARMeilleure.Translation.PTC
private const string OuterHeaderMagicString = "PTCohd\0\0";
private const string InnerHeaderMagicString = "PTCihd\0\0";
private const uint InternalVersion = 6634; //! To be incremented manually for each change to the ARMeilleure project.
private const uint InternalVersion = 6950; //! To be incremented manually for each change to the ARMeilleure project.
private const string ActualDir = "0";
private const string BackupDir = "1";