From 8f8fd768089ae3ac82fd421b1ebd1a80f9fca5fc Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Wed, 10 Apr 2019 23:40:06 -0700 Subject: type: unions are object types --- type.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/type.c b/type.c index e0cde2d..e458c19 100644 --- a/type.c +++ b/type.c @@ -117,6 +117,9 @@ typeprop(struct type *t) case TYPESTRUCT: p |= PROPOBJECT|PROPAGGR; break; + case TYPEUNION: + p |= PROPOBJECT; + break; default: break; } -- cgit v1.2.3