diff options
| author | seyko <seyko2@gmail.com> | 2016-05-01 05:43:57 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2016-05-01 05:43:57 +0300 |
| commit | a1c139063b9157c804fd76eedb6a8060726fe0d5 (patch) | |
| tree | 59ccd96c58dbe63c9244fdf7d957a044a4df5ef9 /tests/pp/02.expect | |
| parent | 256078933c8152038fd0d4fbff1d92b3bb3a14a3 (diff) | |
| download | tinycc-a1c139063b9157c804fd76eedb6a8060726fe0d5.tar.gz tinycc-a1c139063b9157c804fd76eedb6a8060726fe0d5.tar.bz2 | |
output space after TOK_PPNUM which followed by '+' or '-'
* correct -E output for the case ++ + ++ concatenation
do this only for expanded from macro string
and only when tcc_state->output_type == TCC_OUTPUT_PREPROCESS
Diffstat (limited to 'tests/pp/02.expect')
| -rw-r--r-- | tests/pp/02.expect | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/pp/02.expect b/tests/pp/02.expect index 16f42ae..625c80b 100644 --- a/tests/pp/02.expect +++ b/tests/pp/02.expect @@ -1,5 +1,6 @@ f(2 * (y+1)) + f(2 * (f(2 * (z[0])))) % f(2 * (0)) + t(1); -f(2 * (2+(3,4)-0,1)) | f(2 * (~ 5)) & f(2 * (0,1))^m(0,1); +f(2 * (2 +(3,4)-0,1)) | f(2 * (~ 5)) & f(2 * (0,1))^m(0,1); + char c[2][6] = { "hello", "" }; f(2 * (y+1)) + f(2 * (f(2 * (z[0])))) % f(2 * (0)) + t(1); -f(2 * (2+(3,4)-0,1)) | f(2 * (~ 5)) & f(2 * (0,1))^m(0,1); +f(2 * (2 +(3,4)-0,1)) | f(2 * (~ 5)) & f(2 * (0,1))^m(0,1); |
