heptagon/compiler/minils
Léonard Gérard 6b86b86e9d really fix normalize_mem.
in the old fix was missing the renaming, and there was wrong equations
order :
f () returns x
[here rename x by mem_x]
mem_x = fby ...
x = mem_x

so the simplest was :
f () returns out_x
var x;
[ nothing to do]
out_x = x
x = fby ...

pay attention to the order of equations since we are after the
scheduling..
probably it should be done before the scheduling anyway ?
2011-04-20 20:47:06 +02:00
..
analysis Other compile fixes 2011-04-19 09:49:00 +02:00
main Added a pass to normalize memories 2011-04-19 17:19:40 +02:00
transformations really fix normalize_mem. 2011-04-20 20:47:06 +02:00
_tags Moved sequential to compiler/ dir 2010-07-08 15:19:04 +02:00
minils.ml 100 and java scalarized 2011-04-19 18:45:56 +02:00
mls_compare.ml Heptc compiles again 2011-04-18 15:38:42 +02:00
mls_mapfold.ml 100 and java scalarized 2011-04-19 18:45:56 +02:00
mls_printer.ml 100 and java scalarized 2011-04-19 18:45:56 +02:00
mls_utils.ml really fix normalize_mem. 2011-04-20 20:47:06 +02:00