From 40ecf7689b6dfe3991702fe8ecd69dfb8966f1a3 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 28 Oct 2023 21:02:13 +0200 Subject: [PATCH] LibJS/JIT: Run clang-format on Compiler.cpp --- Userland/Libraries/LibJS/JIT/Compiler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Userland/Libraries/LibJS/JIT/Compiler.cpp b/Userland/Libraries/LibJS/JIT/Compiler.cpp index feeb122ed5..49bfe31107 100644 --- a/Userland/Libraries/LibJS/JIT/Compiler.cpp +++ b/Userland/Libraries/LibJS/JIT/Compiler.cpp @@ -325,8 +325,7 @@ void Compiler::check_exception() m_assembler.jump_if_not_equal( Assembler::Operand::Register(GPR0), Assembler::Operand::Register(GPR1), - m_exception_handler - ); + m_exception_handler); } void Compiler::handle_exception()