From 6642d4cf93d689a0903df7eabcdf31102da9628b Mon Sep 17 00:00:00 2001 From: Jordi Baylina Date: Fri, 21 Jun 2019 10:42:49 +0200 Subject: [PATCH] Fix: include allways reduce constants --- src/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.js b/src/compiler.js index c1b15cc..b6a8296 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -77,8 +77,8 @@ async function compile(srcFile, options) { classifySignals(ctx); + reduceConstants(ctx); if (options.reduceConstraints) { - reduceConstants(ctx); // Repeat while reductions are performed let oldNConstrains = -1;