From: fennecdjay Date: Sat, 11 May 2019 10:43:26 +0000 (+0200) Subject: :shirt: Avoid compiler warning X-Git-Tag: nightly~2501 X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=897904ab228a88044115918d5109f640f052b9f9;p=gwion.git :shirt: Avoid compiler warning --- diff --git a/src/vm/vm.c b/src/vm/vm.c index 32305df9..39ec2b1d 100644 --- a/src/vm/vm.c +++ b/src/vm/vm.c @@ -592,7 +592,9 @@ regtomem: DISPATCH() overflow: if(overflow_((shred->mem = mem), shred)) { -shred->code = a.code; +PRAGMA_PUSH() + shred->code = a.code; +PRAGMA_POP() Except(shred, "StackOverflow"); } next: