From abb658fa8e874fb87898442c423d5b41f50c9e7a Mon Sep 17 00:00:00 2001 From: Luke Warner <65521430+LukeWarnut@users.noreply.github.com> Date: Fri, 13 Sep 2024 11:38:04 -0400 Subject: [PATCH] Reorder declarations --- src/shader_recompiler/frontend/translate/translate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shader_recompiler/frontend/translate/translate.h b/src/shader_recompiler/frontend/translate/translate.h index 42aa22466..bd197628d 100644 --- a/src/shader_recompiler/frontend/translate/translate.h +++ b/src/shader_recompiler/frontend/translate/translate.h @@ -103,8 +103,8 @@ public: void S_ADDK_I32(const GcnInst& inst); void S_MAX_U32(bool is_signed, const GcnInst& inst); void S_MIN_U32(bool is_signed, const GcnInst& inst); - void S_CMPK(ConditionOp cond, bool is_signed, const GcnInst& inst); void S_ABSDIFF_I32(const GcnInst& inst); + void S_CMPK(ConditionOp cond, bool is_signed, const GcnInst& inst); // Scalar Memory void S_LOAD_DWORD(int num_dwords, const GcnInst& inst);