[a64] Increase function code size to 1MiB

This commit is contained in:
Wunkolo 2024-05-07 06:50:21 -07:00
parent ba924feea5
commit e4d3b2a484
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ const uint8_t A64Emitter::fpr_reg_map_[A64Emitter::FPR_COUNT] = {
};
A64Emitter::A64Emitter(A64Backend* backend)
: CodeBlock(4_KiB),
: CodeBlock(kMaxCodeSize),
CodeGenerator(CodeBlock::ptr()),
processor_(backend->processor()),
backend_(backend),