[c pass] idem
This commit is contained in:
parent
9483f7df5e
commit
01d4a08e8a
@ -98,11 +98,20 @@ let rec merge_neighbour_ifs = function
|
||||
| CIf (c, e1, e2) :: CIf (c', e'1, e'2) :: b ->
|
||||
begin
|
||||
if c = c' then
|
||||
merge_neighbour_ifs (CIf (c, e1 @ e'1, e2 @ e'2) :: b)
|
||||
merge_neighbour_ifs
|
||||
(CIf (c,
|
||||
merge_neighbour_ifs (e1 @ e'1),
|
||||
merge_neighbour_ifs (e2 @ e'2)) :: b)
|
||||
else if c = CMonOp (MOp_not, c') then
|
||||
merge_neighbour_ifs (CIf (c, e1 @ e'2, e2 @ e'1) :: b)
|
||||
merge_neighbour_ifs
|
||||
(CIf (c',
|
||||
merge_neighbour_ifs (e2 @ e'1),
|
||||
merge_neighbour_ifs (e1 @ e'2)) :: b)
|
||||
else if c' = CMonOp (MOp_not, c) then
|
||||
merge_neighbour_ifs (CIf (c, e1 @ e'2, e2 @ e'1) :: b)
|
||||
merge_neighbour_ifs
|
||||
(CIf (c,
|
||||
merge_neighbour_ifs (e1 @ e'2),
|
||||
merge_neighbour_ifs (e2 @ e'1)) :: b)
|
||||
else CIf (c, e1, e2) :: merge_neighbour_ifs (CIf (c', e'1, e'2) :: b)
|
||||
end
|
||||
| stmt :: stmt' :: b ->
|
||||
|
Loading…
Reference in New Issue
Block a user