From 3a3f2be00842b17d14fa9d1c9ac3174af6eaaf0c Mon Sep 17 00:00:00 2001 From: Gabriel A Date: Sun, 16 Jun 2024 21:40:05 -0300 Subject: [PATCH] PPTC version bump --- .../CodeGen/RegisterAllocators/LiveInterval.cs | 14 -------------- src/ARMeilleure/Translation/PTC/Ptc.cs | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs index fe8d78ac50..cfe1bc7ca9 100644 --- a/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs +++ b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs @@ -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) diff --git a/src/ARMeilleure/Translation/PTC/Ptc.cs b/src/ARMeilleure/Translation/PTC/Ptc.cs index f56bdce1cd..c2eed7a552 100644 --- a/src/ARMeilleure/Translation/PTC/Ptc.cs +++ b/src/ARMeilleure/Translation/PTC/Ptc.cs @@ -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";