aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2018-03-22 14:06:23 -0400
committerGravatar Jason Gross <jasongross9@gmail.com>2018-03-23 12:53:11 -0400
commit02a847a95ffc6c64b6bf8ce0ba38ca3b3d797f38 (patch)
tree708ce26b7bdcb34c15152d5430a4859a48b4f2d2 /src
parentaaf2747cb7c6b7371987a1824f3e4daa96862dc1 (diff)
Response to code review comment
Diffstat (limited to 'src')
-rw-r--r--src/Experiments/SimplyTypedArithmetic.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Experiments/SimplyTypedArithmetic.v b/src/Experiments/SimplyTypedArithmetic.v
index 27880fbd3..a2d3e8c63 100644
--- a/src/Experiments/SimplyTypedArithmetic.v
+++ b/src/Experiments/SimplyTypedArithmetic.v
@@ -5136,8 +5136,8 @@ Module Compilers.
| TT => (cur_idx, TT)
| AppIdent s d idc args
=> let default _
- := let default := @eliminate_dead' _ args cur_idx in
- (fst default, AppIdent idc (snd default)) in
+ := let default' := @eliminate_dead' _ args cur_idx in
+ (fst default', AppIdent idc (snd default')) in
match args in expr.expr t return ident.ident t d -> (unit -> positive * expr d) -> positive * expr d with
| Pair A B x y
=> match y in expr.expr Y return ident.ident (A * Y) d -> (unit -> positive * expr d) -> positive * expr d with