From owner-freebsd-current@freebsd.org Thu Sep 27 20:06:31 2018 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71CB710B7D2C for ; Thu, 27 Sep 2018 20:06:31 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "troutmask", Issuer "troutmask" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 03C3174B58 for ; Thu, 27 Sep 2018 20:06:30 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id w8RK6TSi060815 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 27 Sep 2018 13:06:29 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id w8RK6TVA060796 for freebsd-current@freebsd.org; Thu, 27 Sep 2018 13:06:29 -0700 (PDT) (envelope-from sgk) Date: Thu, 27 Sep 2018 13:06:29 -0700 From: Steve Kargl To: freebsd-current@freebsd.org Subject: Re: LLVM breaks buildworld Message-ID: <20180927200629.GA24307@troutmask.apl.washington.edu> Reply-To: sgk@troutmask.apl.washington.edu References: <20180927193439.GA74697@troutmask.apl.washington.edu> <20180927193907.GA74777@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180927193907.GA74777@troutmask.apl.washington.edu> User-Agent: Mutt/1.10.1 (2018-07-13) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2018 20:06:31 -0000 On Thu, Sep 27, 2018 at 12:39:07PM -0700, Steve Kargl wrote: > On Thu, Sep 27, 2018 at 12:34:39PM -0700, Steve Kargl wrote: > > cd /usr/obj > > rm -f usr > > cd /usr/src > > svn update > > make buildworld > > (wait a long time) > > > > ===> lib/clang/libllvm (all) > > llvm-tblgen -gen-asm-matcher -I /usr/src/contrib/llvm/include -I /usr/src/contrib/llvm/lib/Target/Mips -d MipsGenAsmMatcher.inc.d -o MipsGenAsmMatcher.inc /usr/src/contrib/llvm/lib/Target/Mips/Mips.td > > Included from /usr/src/contrib/llvm/lib/Target/Mips/Mips.td:57: > > Included from /usr/src/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td:3010: > > /usr/src/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td:1142:25: error: Couldn't find class 'SHRD_QB_ENC' > > def SHRL_QB : DspMMRel, SHRD_QB_ENC, SHRL_QB_DESC; > > ^ > > % find /usr/src/contrib/llvm -type f | xargs grep SHRD_QB > /usr/src/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td:def SHRL_QB : DspMMRel, SHRD_QB_ENC, SHRL_QB_DESC; > > > This is only place under llvm that SHRD_QB appears? > Hmmm, deleting the file MipsDSPInstrInfo.td seems to flip SHRD to SHRL. Oddly, 'svn diff' did not show a diff with the corrupt file. :(. -- Steve