diff options
| author | Matthias Gatto <uso.cosmo.ray@gmail.com> | 2017-07-06 13:46:28 +0200 |
|---|---|---|
| committer | matthias <uso.cosmo.ray@gmail.com> | 2017-07-18 20:28:51 +0200 |
| commit | 2020a312ca4afb052f0ad0692540d31dcce164bd (patch) | |
| tree | b9fee111de2af7c26ff720fec751ad6c2b2f2e0e /tccgen.c | |
| parent | 3f13e33872aeac7d1363ac9bd01baad9f8a80764 (diff) | |
| download | tinycc-2020a312ca4afb052f0ad0692540d31dcce164bd.tar.gz tinycc-2020a312ca4afb052f0ad0692540d31dcce164bd.tar.bz2 | |
unqualify volatile in _Generic type checking
Diffstat (limited to 'tccgen.c')
| -rw-r--r-- | tccgen.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4908,6 +4908,7 @@ ST_FUNC void unary(void) if (controlling_type.t & VT_ARRAY) controlling_type.t = VT_PTR; controlling_type.t &= ~VT_CONSTANT; + controlling_type.t &= ~VT_VOLATILE; for (;;) { learn = 0; skip(','); |
