Fixed control fusion

This commit is contained in:
Cédric Pasteur 2011-10-05 10:49:51 +02:00
parent d0ed09c3e5
commit 175c8e34ff
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ let rec joinlist j l =
| s1::s2::l ->
match s1, s2 with
| Acase(e1, h1),
Acase(e2, h2) when e1.e_desc = e2.e_desc ->
Acase(e2, h2) when Obc_compare.exp_compare e1 e2 = 0 ->
if is_modified_handlers j e1 h1 then
s1::(joinlist j (s2::l))
else