enforce 4k align
This commit is contained in:
parent
6a3053ce5d
commit
774dc4fa62
|
|
@ -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…
Reference in New Issue