diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-11-20 00:24:46 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-11-20 00:24:46 +0000 |
| commit | 992cbda8d0958572831ea18c58c32ed11daf812d (patch) | |
| tree | 790cb8891837724ec602dfddf5aa6ce24361f3a2 /tccgen.c | |
| parent | 30c54c9d433f5cc213912afd2ed04808cd9a4a23 (diff) | |
| download | tinycc-992cbda8d0958572831ea18c58c32ed11daf812d.tar.gz tinycc-992cbda8d0958572831ea18c58c32ed11daf812d.tar.bz2 | |
tccgen.c: Recognise constant expressions with conditional operator.
tests/tests2/78_vla_label.c: Check that int a[1 ? 1 : 1] is not a VLA.
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -4522,9 +4522,13 @@ static void expr_cond(void) SValue sv; CType type, type1, type2; - if (const_wanted) { + if (const_wanted) expr_lor_const(); - if (tok == '?') { + else + expr_lor(); + if (tok == '?') { + next(); + if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) { CType boolean; int c; boolean.t = VT_BOOL; @@ -4532,7 +4536,6 @@ static void expr_cond(void) gen_cast(&boolean); c = vtop->c.i; vpop(); - next(); if (tok != ':' || !gnu_ext) { vpop(); gexpr(); @@ -4544,10 +4547,7 @@ static void expr_cond(void) if (c) vpop(); } - } else { - expr_lor(); - if (tok == '?') { - next(); + else { if (vtop != vstack) { /* needed to avoid having different registers saved in each branch */ |
