aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2018-09-04 10:05:49 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2018-09-04 10:05:49 +0200
commit227a4f0ff54855b32bae731050c61dff8e23b40c (patch)
tree6ec3097c3498effd59969898a17a466f0be945db
parent64d1dd7fcf4ec5e3476f557bf0920f669ccc6c7c (diff)
parent9f71a6f054dfa0c9942e28114ea29e6527678289 (diff)
downloadcompcert-kvx-227a4f0ff54855b32bae731050c61dff8e23b40c.tar.gz
compcert-kvx-227a4f0ff54855b32bae731050c61dff8e23b40c.zip
Merge branch 'master' of github.com:AbsInt/CompCert
-rw-r--r--cparser/Cflow.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Cflow.ml b/cparser/Cflow.ml
index c7236ce8..cc257189 100644
--- a/cparser/Cflow.ml
+++ b/cparser/Cflow.ml
@@ -135,7 +135,7 @@ let catch_continue (s: flow) : flow = fun i ->
let o = s i in
{ o with onormal = o.onormal || o.ocontinue; ocontinue = false}
-(* Convert "continue" into "fallthrough". Typically applied to a loop. *)
+(* Convert "break" into "fallthrough". Typically applied to a loop. *)
let catch_break (s: flow) : flow = fun i ->
let o = s i in