summaryrefslogtreecommitdiff
path: root/LANGUAGE.txt
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-09-01 20:42:28 +0200
committertomsmeding <tom.smeding@gmail.com>2016-09-01 20:42:28 +0200
commitabeb43aa08efba521e3cb94cffd30f9c7dd48250 (patch)
treee7dc95ac8b781857f3370da990d0355345b92312 /LANGUAGE.txt
parentf0b90a58bf587501a1b5814929b3df33bb8e5a94 (diff)
Parse break, continue, return as builtins
Diffstat (limited to 'LANGUAGE.txt')
-rw-r--r--LANGUAGE.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/LANGUAGE.txt b/LANGUAGE.txt
index 48dcb95..049dbda 100644
--- a/LANGUAGE.txt
+++ b/LANGUAGE.txt
@@ -20,5 +20,5 @@ The usual infix expression rules apply, with the following precedence table:
** 13 Right
-break and continue get parsed to calls to the __break() and __continue()
-compiler intrinsics (thus become AST_CALL nodes).
+break and continue get parsed to calls to the __builtin_break() and
+__builtin_continue() compiler intrinsics (thus become AST_CALL nodes).