summaryrefslogtreecommitdiff
path: root/src/parser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.mly')
-rw-r--r--src/parser.mly2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.mly b/src/parser.mly
index a1e93388..f764995a 100644
--- a/src/parser.mly
+++ b/src/parser.mly
@@ -1414,6 +1414,8 @@ scattered_clause:
loop_measure:
| Until exp
{ Loop (Until, $2) }
+ | Repeat exp
+ { Loop (Until, $2) }
| While exp
{ Loop (While, $2) }