aboutsummaryrefslogtreecommitdiff
path: root/src/Reflection/InlineCastInterp.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-02-21 13:17:19 -0500
committerGravatar Jason Gross <jgross@mit.edu>2017-02-21 13:17:19 -0500
commitb7d2af40ff07a4bc88024fa8448672d786cdcd66 (patch)
tree30337011c4fc2b6ae2292abaa6c78cb5457226a1 /src/Reflection/InlineCastInterp.v
parentb10381a153d2b15d767cc8ae7100cd6e1d9715f3 (diff)
Rename Interp lemmas
```bash $ git grep --name-only 'Interp_InlineCast\|Interp_InlineConst\|Interp_Linearize' | xargs sed s'/Interp_/Interp/g' -i ```
Diffstat (limited to 'src/Reflection/InlineCastInterp.v')
-rw-r--r--src/Reflection/InlineCastInterp.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Reflection/InlineCastInterp.v b/src/Reflection/InlineCastInterp.v
index 1f02c71ea..5cf2bf7fe 100644
--- a/src/Reflection/InlineCastInterp.v
+++ b/src/Reflection/InlineCastInterp.v
@@ -105,9 +105,9 @@ Section language.
Local Hint Resolve interpf_exprf_of_push_cast.
- Lemma Interp_InlineCast {t} e (Hwf : Wf e)
+ Lemma InterpInlineCast {t} e (Hwf : Wf e)
: interp_type_gen_rel_pointwise (fun _ => @eq _)
(Interp interp_op (@InlineCast t e))
(Interp interp_op e).
- Proof. apply Interp_InlineConstGen; auto. Qed.
+ Proof. apply InterpInlineConstGen; auto. Qed.
End language.