From fc158ab464fd58aec17aa590bc2022f539fefc5a Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 30 May 2020 19:29:42 -0700 Subject: bug: temporary removal of musl lib to isolate malloc bug --- sys/cmd/cc/cc.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'sys/cmd/cc/cc.h') diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h index da45b18..d030b91 100644 --- a/sys/cmd/cc/cc.h +++ b/sys/cmd/cc/cc.h @@ -409,9 +409,13 @@ struct Expr uint32 qual; uint32 type; union { + string name; struct { uint64 kind; - union Val; + union { + union Val; + union Val v; + }; } val; struct { int n; @@ -699,8 +703,8 @@ struct Type extern Type pointer; extern Type basetypes[24]; /* mandated by C standard */ -extern uint64 validtypespec[40]; -extern int indextypespec[40]; +extern uint64 validtypespec[38]; +extern int indextypespec[38]; struct Scope { -- cgit v1.2.1