diff options
| author | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-07-31 17:18:19 +0200 |
|---|---|---|
| committer | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-07-31 17:18:19 +0200 |
| commit | 626a9074512c6c6ba060dc8a4a0d1caa49db76c1 (patch) | |
| tree | 15e2bed45b4c9e9f875e45b0f3fb78e07f457a88 /tccgen.c | |
| parent | b2f5ee9b2de40e26ba3d92cf3950be6da7766b7d (diff) | |
| download | tinycc-626a9074512c6c6ba060dc8a4a0d1caa49db76c1.tar.gz tinycc-626a9074512c6c6ba060dc8a4a0d1caa49db76c1.tar.bz2 | |
Revert "Force const. expr. in expr_cond outside function"
This reverts commit b2f5ee9b2de40e26ba3d92cf3950be6da7766b7d as it's
useless on mob.
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4038,7 +4038,7 @@ static void expr_cond(void) SValue sv; CType type, type1, type2; - if (const_wanted || (cur_text_section == NULL)) { + if (const_wanted) { expr_lor_const(); if (tok == '?') { CType boolean; |
