Skip to content

Commit

Permalink
feat: Reduce stack size after optimizations (#6698)
Browse files Browse the repository at this point in the history
After [this PR](noir-lang/noir#5097) we should
be able to set the stack size back down to the previous value.
  • Loading branch information
sirasistant authored May 27, 2024
1 parent 00eed94 commit 3502ccd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use super::{
};
use acvm::{acir::brillig::MemoryAddress, FieldElement};

pub(crate) const MAX_STACK_SIZE: usize = 3072;
pub(crate) const MAX_STACK_SIZE: usize = 2048;

impl BrilligContext {
/// Creates an entry point artifact that will jump to the function label provided.
Expand Down

0 comments on commit 3502ccd

Please sign in to comment.