aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2016-05-04 21:37:11 +0100
committerEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2016-05-09 19:27:31 +0100
commitf5f82abc99424c4ece836000934fcf57a867c635 (patch)
tree2e70deb54bcac302987e7a20f124041c34c00f51 /TODO
parent75243f744c60e588ee68c1a47f1ce691a36c07a7 (diff)
downloadtinycc-f5f82abc99424c4ece836000934fcf57a867c635.tar.gz
tinycc-f5f82abc99424c4ece836000934fcf57a867c635.tar.bz2
Insert spaces between certain tokens when tcc is invoked with -E.
Insert a space when it is required to prevent mistokenisation of the output, and also in a few cases where it is not strictly required, imitating GCC's behaviour.
Diffstat (limited to 'TODO')
-rw-r--r--TODO2
1 files changed, 0 insertions, 2 deletions
diff --git a/TODO b/TODO
index bc7fb8b..e6e5b07 100644
--- a/TODO
+++ b/TODO
@@ -31,7 +31,6 @@ Bugs:
- make libtcc fully reentrant (except for the compilation stage itself).
- struct/union/enum definitions in nested scopes (see also Debian bug #770657)
- __STDC_IEC_559__: float f(void) { static float x = 0.0 / 0.0; return x; }
-- preprocessor: #define Y(x) Z(x) {newline} #define X Y {newline} X(X(1))
Portability:
@@ -94,7 +93,6 @@ Not critical:
- handle void (__attribute__() *ptr)()
- VLAs are implemented in a way that is not compatible with signals:
http://lists.gnu.org/archive/html/tinycc-devel/2015-11/msg00018.html
-- output with -E should include spaces: #define n 0xe {newline} n+1
Fixed (probably):