From dda4da7daf0472ed99fc4cb35835215197d662df Mon Sep 17 00:00:00 2001 From: Gabriel A Date: Fri, 23 Feb 2024 19:32:15 -0300 Subject: [PATCH] Formatting + revert unrelated change --- src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs b/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs index 3c2a60a1a9..3957a7559e 100644 --- a/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs +++ b/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs @@ -114,7 +114,7 @@ namespace ARMeilleure.Translation.Cache { int stackOffset = entry.StackOffsetOrAllocSize; - // Debug.Assert(stackOffset % 16 == 0); + Debug.Assert(stackOffset % 16 == 0); if (stackOffset <= 0xFFFF0) { @@ -135,7 +135,7 @@ namespace ARMeilleure.Translation.Cache { int allocSize = entry.StackOffsetOrAllocSize; - // Debug.Assert(allocSize % 8 == 0); + Debug.Assert(allocSize % 8 == 0); if (allocSize <= 128) {