summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-11-27 21:52:48 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-11-27 21:52:48 +0000
commitfb14c03667552fe558e472056bb0b834a3652d8f (patch)
tree951c465fa67be041d18f783adb5862e4cc138b3e /README
parent0ac605d5a09ba80615b2e0c151f31741168e6d2d (diff)
downloadpp2cc-fb14c03667552fe558e472056bb0b834a3652d8f.tar.gz
Support for break/continue
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index f695e1a..fe2a379 100644
--- a/README
+++ b/README
@@ -85,9 +85,9 @@ A9.3 Compound statement - supported
A9.4 Selection statements - if and if/else are supported, switch is not
A9.5 Iteration statements - while, do/while and for are supported. A missing
second expression in the for is equivalent to a non-zero constant
-A9.6 Jump statements - goto is unsupported. continue, break are not supported
- yet. return is supported with and without value. The function
- result is undefined for the second case
+A9.6 Jump statements - goto is unsupported. continue, break are supported.
+ return is supported with and without value. The function result is
+ undefined for the second case
A10 External Declarations
A10.1 Function Definitions - unsupported: extern static, parameters. Old style