diff options
| author | grischka <grischka> | 2011-07-16 15:53:30 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2011-07-16 15:53:30 +0200 |
| commit | d7d845888808da6191ab6a70942fac6e3eb815ea (patch) | |
| tree | b0ae42c05a41200e0cd4c0359eac85549aac3fa3 /tccgen.c | |
| parent | adc80009c8cc71f5dc01192ea116e9d97f417767 (diff) | |
| download | tinycc-d7d845888808da6191ab6a70942fac6e3eb815ea.tar.gz tinycc-d7d845888808da6191ab6a70942fac6e3eb815ea.tar.bz2 | |
Revert "better constant handling for expr_cond"
It produced wrong code with one of my test projects.
This reverts commit cd3d1a45f34be3c9a358f1743bcaf8aac897992e.
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -4040,10 +4040,6 @@ static void expr_cond(void) if (const_wanted) { expr_lor_const(); - } else { - expr_lor(); - } - if (const_wanted || ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST)) { if (tok == '?') { CType boolean; int c; @@ -4065,6 +4061,7 @@ static void expr_cond(void) vpop(); } } else { + expr_lor(); if (tok == '?') { next(); if (vtop != vstack) { |
