mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 07:38:56 +02:00
enforce 4k align
This commit is contained in:
parent
6a3053ce5d
commit
774dc4fa62
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ enum class Opcode;
|
|||
/// Note that this is a linear IR and not a pure tree-based IR: i.e.: there is an ordering to
|
||||
/// the microinstructions. This only matters before chaining is done in order to correctly
|
||||
/// order memory accesses.
|
||||
class Block final {
|
||||
class alignas(4096) Block final {
|
||||
public:
|
||||
//using instruction_list_type = dense_list<Inst>;
|
||||
using instruction_list_type = mcl::intrusive_list<Inst>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue