From owner-cvs-src@FreeBSD.ORG Fri Mar 23 22:26:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92BD416A50A; Fri, 23 Mar 2007 22:26:02 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8374D13C459; Fri, 23 Mar 2007 22:26:02 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l2NMQ2M7096824; Fri, 23 Mar 2007 22:26:02 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l2NMQ2eb096823; Fri, 23 Mar 2007 22:26:02 GMT (envelope-from jkim) Message-Id: <200703232226.l2NMQ2eb096823@repoman.freebsd.org> From: Jung-uk Kim Date: Fri, 23 Mar 2007 22:26:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/ficl ficl.h float.c tools.c unix.c vm.c words.c src/sys/boot/ficl/softwords fileaccess.fr jhlocal.fr oo.fr prefix.fr softcore.awk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Mar 2007 22:26:02 -0000 jkim 2007-03-23 22:26:02 UTC FreeBSD src repository Modified files: sys/boot/ficl ficl.h float.c tools.c unix.c vm.c words.c sys/boot/ficl/softwords fileaccess.fr jhlocal.fr oo.fr prefix.fr softcore.awk Log: Update to FICL 3.03 (the last release before FICL4 rewrite). The relevant changes for FreeBSD (excerpt from the release note): * Newly implemented CORE EXT words: CASE, OF, ENDOF, and ENDCASE. Also added FALLTHROUGH, which works like ENDOF but jumps to the instruction just after the next OF. * Bugfix: John-Hopkins locals syntax now accepts | and -- in the comment (between the first -- and the }.) * Bugfix: Changed vmGetWord0() to make Purify happier. The resulting code is no slower, no larger, and slightly more robust. Revision Changes Path 1.22 +6 -3 src/sys/boot/ficl/ficl.h 1.2 +3 -0 src/sys/boot/ficl/float.c 1.2 +1 -2 src/sys/boot/ficl/softwords/fileaccess.fr 1.5 +12 -9 src/sys/boot/ficl/softwords/jhlocal.fr 1.5 +8 -7 src/sys/boot/ficl/softwords/oo.fr 1.3 +1 -1 src/sys/boot/ficl/softwords/prefix.fr 1.9 +45 -4 src/sys/boot/ficl/softwords/softcore.awk 1.3 +9 -2 src/sys/boot/ficl/tools.c 1.2 +3 -3 src/sys/boot/ficl/unix.c 1.10 +15 -1 src/sys/boot/ficl/vm.c 1.40 +303 -37 src/sys/boot/ficl/words.c