fix bug where incorrect stack size is given

This commit is contained in:
Folkert 2022-03-30 17:25:28 +02:00
parent c73c01aa34
commit fd209f90ff
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
5 changed files with 93 additions and 41 deletions

View file

@ -265,7 +265,8 @@ pub fn helper<'a>(
let target = target_lexicon::Triple::host();
let opt_level = if cfg!(debug_assertions) {
OptLevel::Normal
// OptLevel::Normal
OptLevel::Optimize
} else {
OptLevel::Optimize
};