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:
parent
c1551a64dc
commit
230aa1404c
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue