aboutsummaryrefslogtreecommitdiffstats
path: root/backend/CSE3analysis.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/CSE3analysis.v')
-rw-r--r--backend/CSE3analysis.v7
1 files changed, 3 insertions, 4 deletions
diff --git a/backend/CSE3analysis.v b/backend/CSE3analysis.v
index cdda2cb7..6cce52c7 100644
--- a/backend/CSE3analysis.v
+++ b/backend/CSE3analysis.v
@@ -245,14 +245,13 @@ Section OPERATIONS.
| None => kill_reg dst rel
end.
- (*
Definition oper (dst : reg) (op: sym_op) (args : list reg)
(rel : RELATION.t) : RELATION.t :=
- match find_op rel op (forward_move_l rel args) with
+ match rhs_find op (forward_move_l rel args) rel with
| Some r => move r dst rel
- | None => oper1 op dst args rel
+ | None => oper1 dst op args rel
end.
-*)
+
End PER_NODE.
End OPERATIONS.