aboutsummaryrefslogtreecommitdiff
path: root/src/Compilers/Named/RegisterAssign.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Compilers/Named/RegisterAssign.v')
-rw-r--r--src/Compilers/Named/RegisterAssign.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Compilers/Named/RegisterAssign.v b/src/Compilers/Named/RegisterAssign.v
index 869d959ec..0b6c9b7b9 100644
--- a/src/Compilers/Named/RegisterAssign.v
+++ b/src/Compilers/Named/RegisterAssign.v
@@ -34,9 +34,9 @@ Section language.
: option (exprf OutName t)
:= match e in Named.exprf _ _ _ t return option (exprf _ t) with
| TT => Some TT
- | Var t' name => match lookupb ctxi name t' with
+ | Var t' name => match lookupb t' ctxi name with
| Some new_name
- => match lookupb ctxr new_name t' with
+ => match lookupb t' ctxr new_name with
| Some name'
=> if InName_beq name name'
then Some (Var new_name)