Closed oleg-nesterov closed 11 months ago
Before this patch
import("stdfaust.lib"); process = |(ma.not(0));
compiles to
output0[i0] = FAUSTFLOAT(int(float(input0[i0])) | -1);
after the patch
output0[i0] = FAUSTFLOAT(-1);
Merged thanks.
Before this patch
compiles to
after the patch