chore(library/compiler/llnf): fix compilation warning

This commit is contained in:
Leonardo de Moura 2019-02-07 15:02:26 -08:00
parent 7f11846068
commit ba449aa9f4

View file

@ -112,7 +112,7 @@ expr mk_llnf_reuse(unsigned cidx, unsigned num_usizes, unsigned num_bytes, bool
return mk_constant(name(name(name(name(*g_reuse, cidx), num_usizes), num_bytes), updt_cidx));
}
bool is_llnf_reuse(expr const & e, unsigned & cidx, unsigned & num_usizes, unsigned & num_bytes, bool & updt_cidx) {
unsigned aux;
unsigned aux = 0;
bool r = is_llnf_quaternary_primitive(e, *g_reuse, cidx, num_usizes, num_bytes, aux);
updt_cidx = aux;
return r;