LibJIT+LibJS: Move JIT::Assembler into a new LibJIT library

This will allow other parts of the system to generate machine code
at runtime. :^)
This commit is contained in:
Andreas Kling 2023-10-26 15:18:28 +02:00
commit 5b87d26027
Notes: sideshowbarker 2024-07-17 07:48:42 +09:00
7 changed files with 15 additions and 6 deletions

View file

@ -0,0 +1,11 @@
/*
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJIT/Assembler.h>
namespace JIT {
}