From 2020a312ca4afb052f0ad0692540d31dcce164bd Mon Sep 17 00:00:00 2001 From: Matthias Gatto Date: Thu, 6 Jul 2017 13:46:28 +0200 Subject: [PATCH] unqualify volatile in _Generic type checking --- tccgen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tccgen.c b/tccgen.c index 60ae198..25afdab 100644 --- a/tccgen.c +++ b/tccgen.c @@ -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(',');