aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-11-08 13:35:19 -0500
committerGravatar Jason Gross <jgross@mit.edu>2016-11-08 13:35:24 -0500
commitc6ee53d51b832d22e86773bc9fd096b5f755e6f5 (patch)
tree464dd007f959cb714413776075d4d2675fe37db1
parentb103fcc6f1d130cc4c6d9200851f62a392c1d798 (diff)
Fix 8.4 build ([value] is a constant)
-rw-r--r--src/Reflection/Z/Interpretations.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Reflection/Z/Interpretations.v b/src/Reflection/Z/Interpretations.v
index 8d0ab0c1b..7b323cd2b 100644
--- a/src/Reflection/Z/Interpretations.v
+++ b/src/Reflection/Z/Interpretations.v
@@ -406,9 +406,9 @@ Module ZBounds.
: Tuple.tuple t (S pred_n)
:= Tuple.push_option
match int_width, Tuple.lift_option modulus, Tuple.lift_option value with
- | Some int_width, Some modulus, Some value
- => if check_conditional_subtract_bounds pred_n int_width modulus value
- then Some (conditional_subtract' pred_n int_width modulus value)
+ | Some int_width, Some modulus, Some value'
+ => if check_conditional_subtract_bounds pred_n int_width modulus value'
+ then Some (conditional_subtract' pred_n int_width modulus value')
else None
| _, _, _ => None
end.