From owner-svn-src-all@freebsd.org Fri Jan 26 23:21:34 2018 Return-Path: Delivered-To: svn-src-all@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 93979ECF52E for ; Fri, 26 Jan 2018 23:21:34 +0000 (UTC) (envelope-from joerg@bec.de) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [IPv6:2001:4b98:c:538::195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 334256ABBE for ; Fri, 26 Jan 2018 23:21:33 +0000 (UTC) (envelope-from joerg@bec.de) Received: from britannica.bec.de (p200300D2ABC4DD104639C4FFFE599710.dip0.t-ipconnect.de [IPv6:2003:d2:abc4:dd10:4639:c4ff:fe59:9710]) (Authenticated sender: joerg@bec.de) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 478C6A80C6 for ; Sat, 27 Jan 2018 00:21:32 +0100 (CET) Date: Sat, 27 Jan 2018 00:20:46 +0100 From: Joerg Sonnenberger To: svn-src-all@freebsd.org Subject: Re: svn commit: r328446 - head/stand/uboot/lib Message-ID: <20180126232046.GA9972@britannica.bec.de> References: <201801262151.w0QLp0sE021257@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201801262151.w0QLp0sE021257@repo.freebsd.org> User-Agent: Mutt/1.9.0 (2017-09-02) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jan 2018 23:21:34 -0000 On Fri, Jan 26, 2018 at 09:51:00PM +0000, Warner Losh wrote: > Author: imp > Date: Fri Jan 26 21:50:59 2018 > New Revision: 328446 > URL: https://svnweb.freebsd.org/changeset/base/328446 > > Log: > Now that exit is __dead2, we need to tag ub_exit() as __dead2. To do > that, we have to put a while (1); after the syscall that will never > return to fake out the compiler.... __builtin_unreachable() ? Joerg