From bc6ae7feb4d9a0670bde00d018475cac2c2b9a47 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 26 Jan 2025 19:05:50 -0800 Subject: [PATCH] CodeEmitter: Fixes clang_format --- CodeEmitter/CodeEmitter/BranchOps.inl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CodeEmitter/CodeEmitter/BranchOps.inl b/CodeEmitter/CodeEmitter/BranchOps.inl index a5975fb425..850501f55e 100644 --- a/CodeEmitter/CodeEmitter/BranchOps.inl +++ b/CodeEmitter/CodeEmitter/BranchOps.inl @@ -227,8 +227,7 @@ public: } void tbz(ARMEmitter::Register rt, uint32_t Bit, ForwardLabel* Label) { - AddLocationToLabel( - Label, ForwardLabel::Reference {.Location = GetCursorAddress(), .Type = ForwardLabel::InstType::TEST_BRANCH}); + AddLocationToLabel(Label, ForwardLabel::Reference {.Location = GetCursorAddress(), .Type = ForwardLabel::InstType::TEST_BRANCH}); constexpr uint32_t Op = 0b0011'0110 << 24; @@ -258,8 +257,7 @@ public: } void tbnz(ARMEmitter::Register rt, uint32_t Bit, ForwardLabel* Label) { - AddLocationToLabel( - Label, ForwardLabel::Reference {.Location = GetCursorAddress(), .Type = ForwardLabel::InstType::TEST_BRANCH}); + AddLocationToLabel(Label, ForwardLabel::Reference {.Location = GetCursorAddress(), .Type = ForwardLabel::InstType::TEST_BRANCH}); constexpr uint32_t Op = 0b0011'0111 << 24; TestAndBranch(Op, rt, Bit, 0);