aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Translation
diff options
context:
space:
mode:
authorFICTURE7 <FICTURE7@gmail.com>2021-04-02 21:54:23 +0400
committerGitHub <noreply@github.com>2021-04-02 19:54:23 +0200
commit98ed81e4cddff807e06c82ea607078f701a8cdbe (patch)
treeffd70bf1d8ae01bf4ea7de06976e1a9fee64c96b /ARMeilleure/Translation
parentd394c7ee98bb69491ea8626935fc69aa6f20d5ec (diff)
Improve `StoreToContext` emission (#2155)
* Improve StoreToContext emission Hoist StoreToContext in dynamic branch fast & slow paths out into their predecessor. Reduces register pressure, code size and compile time because we're throwing less stuff down the pipeline. * Set PTC internal version * Turn EmitDynamicTableCall private * Re-trigger CI
Diffstat (limited to 'ARMeilleure/Translation')
-rw-r--r--ARMeilleure/Translation/PTC/Ptc.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Translation/PTC/Ptc.cs b/ARMeilleure/Translation/PTC/Ptc.cs
index 3065757d..6e1a73f6 100644
--- a/ARMeilleure/Translation/PTC/Ptc.cs
+++ b/ARMeilleure/Translation/PTC/Ptc.cs
@@ -26,7 +26,7 @@ namespace ARMeilleure.Translation.PTC
{
private const string HeaderMagicString = "PTChd\0\0\0";
- private const uint InternalVersion = 1990; //! To be incremented manually for each change to the ARMeilleure project.
+ private const uint InternalVersion = 2155; //! To be incremented manually for each change to the ARMeilleure project.
private const string ActualDir = "0";
private const string BackupDir = "1";