aboutsummaryrefslogtreecommitdiff
path: root/src/Reflection/CountLets.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-10-31 16:28:10 -0400
committerGravatar Jason Gross <jgross@mit.edu>2016-10-31 16:28:10 -0400
commita260aa2ad6302c4dec407419664f244541d2a075 (patch)
treecbc88ce9f1dc41f19693787559247bbba1e2b8e4 /src/Reflection/CountLets.v
parentc6e8be8aa95d3fd6ca33e187ff9f5390bb574400 (diff)
Add [f] to things that use [exprf] or [flat_type]
Diffstat (limited to 'src/Reflection/CountLets.v')
-rw-r--r--src/Reflection/CountLets.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Reflection/CountLets.v b/src/Reflection/CountLets.v
index 927e7a168..8de6e7a2f 100644
--- a/src/Reflection/CountLets.v
+++ b/src/Reflection/CountLets.v
@@ -33,7 +33,7 @@ Section language.
Fixpoint count_lets_genf {t} (e : exprf t) : nat
:= match e with
| LetIn tx _ _ eC
- => count_type_let tx + @count_lets_genf _ (eC (SmartVal var mkVar tx))
+ => count_type_let tx + @count_lets_genf _ (eC (SmartValf var mkVar tx))
| _ => 0
end.
Fixpoint count_lets_gen {t} (e : expr t) : nat