aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jade Philipoom <jadep@google.com>2018-04-17 13:28:08 +0200
committerGravatar jadephilipoom <jade.philipoom@gmail.com>2018-05-07 04:29:09 -0400
commita4baa73fe061ae8f948b8cf9a887668d05061855 (patch)
tree198127e8d9154918f4b1860b4184334e93b2289a /src
parentc7ea44aae3019bf8b02fe3dfc533fc7fb1ca071c (diff)
fix the placement of a dlet to make more sense
Diffstat (limited to 'src')
-rw-r--r--src/Experiments/SimplyTypedArithmetic.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Experiments/SimplyTypedArithmetic.v b/src/Experiments/SimplyTypedArithmetic.v
index bafe666e4..a8f1e0a13 100644
--- a/src/Experiments/SimplyTypedArithmetic.v
+++ b/src/Experiments/SimplyTypedArithmetic.v
@@ -1284,7 +1284,7 @@ Module Rows.
fold_right (fun next (state : list Z * Z * nat) =>
let i := snd state in
let low_high' :=
- dlet_nd low_high := fst state in
+ let low_high := fst state in
let low := fst low_high in
let high := snd low_high in
dlet_nd sum_carry := Z.add_with_get_carry_full (fw i) high (fst next) (snd next) in