mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
19 lines
339 B
C++
19 lines
339 B
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
|
|
#if ARCH(X86_64)
|
|
# include <LibJIT/X86_64/Assembler.h>
|
|
# define JIT_ARCH_SUPPORTED 1
|
|
namespace JIT {
|
|
using Assembler = X86_64Assembler;
|
|
}
|
|
#else
|
|
# undef JIT_ARCH_SUPPORTED
|
|
#endif
|