1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

LibJIT: Only compile Assembler on x86_64 for now

This commit is contained in:
Andreas Kling 2023-10-27 17:14:12 +02:00
parent c1551a64dc
commit 230aa1404c

View file

@ -6,8 +6,11 @@
#pragma once
#include <AK/Platform.h>
#include <AK/Vector.h>
#if ARCH(X86_64)
namespace JIT {
struct Assembler {
@ -577,3 +580,5 @@ struct Assembler {
};
}
#endif