From e50882092a7bd2979896869a3189560a44236b5a Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 2 Apr 2024 11:31:20 -0400 Subject: [PATCH] OpcodeDispatcher: rm CalculateFlags_ShiftVariable unused Signed-off-by: Alyssa Rosenzweig --- FEXCore/Source/Interface/Core/OpcodeDispatcher.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/FEXCore/Source/Interface/Core/OpcodeDispatcher.h b/FEXCore/Source/Interface/Core/OpcodeDispatcher.h index e6a8060305..fd3a89ebf3 100644 --- a/FEXCore/Source/Interface/Core/OpcodeDispatcher.h +++ b/FEXCore/Source/Interface/Core/OpcodeDispatcher.h @@ -1756,13 +1756,6 @@ friend class FEXCore::IR::PassManager; PossiblySetNZCVBits |= OldSetNZCVBits; } - template - void CalculateFlags_ShiftVariable(OrderedNode *Shift, F&& CalculateFlags) { - // We are the ones calculating the deferred flags. Don't recurse! - InvalidateDeferredFlags(); - Calculate_ShiftVariable(Shift, CalculateFlags); - } - /** * @name These functions are used by the deferred flag handling while it is calculating and storing flags in to RFLAGs. * @{ */