summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-12-01 11:48:35 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-12-01 11:48:35 +0000
commite9e743876258e072ae8d07d0977157f9435a0008 (patch)
tree1c191040a9a4d19593572920484becc5f37a35be /README
parent9e797458dd8d144544564674a8767c077ed4bd39 (diff)
downloadpp2cc-e9e743876258e072ae8d07d0977157f9435a0008.tar.gz
Support for <<= and >>=, refactor and comments, fix math_ops corruption
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 1e45505..1770a4f 100644
--- a/README
+++ b/README
@@ -63,7 +63,7 @@ Example in bits assuming 4-bit words: 1000 (-8) >> 2 becomes 0010 (2), 0110 (6)
<< 1 becomes 1100 (-4)
A7.14-A7.15 Logical AND && and OR || are supported. Result is indeed 0 or 1
A7.16 Conditional operator ? : - supported
-A7.17 Assignment - supported: = *= /= %= += -= &= ^= |= Unsupported: <<= >>=
+A7.17 Assignment - supported: = *= /= %= += -= &= ^= |= <<= >>=
Supported for variable names only, pointers and array references
A7.18 Comma - supported
A7.19 Constant expressions - not checked