increase ir buffer size

This commit is contained in:
Anthony Pesch 2017-06-05 19:52:06 -04:00
parent 8cc9ca2d09
commit 3783cb4123
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ struct jit {
struct ra *ra;
/* scratch compilation buffer */
uint8_t ir_buffer[1024 * 1024];
uint8_t ir_buffer[1024 * 1024 * 2];
/* compiled blocks */
struct rb_tree blocks;