From owner-cvs-lib Sat May 11 07:47:10 1996 Return-Path: owner-cvs-lib Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA15956 for cvs-lib-outgoing; Sat, 11 May 1996 07:47:10 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id HAA15949 Sat, 11 May 1996 07:47:02 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id AAA29864; Sun, 12 May 1996 00:42:50 +1000 Date: Sun, 12 May 1996 00:42:50 +1000 From: Bruce Evans Message-Id: <199605111442.AAA29864@godzilla.zeta.org.au> To: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-lib@freefall.freebsd.org, jdp@freefall.freebsd.org Subject: Re: cvs commit: src/lib/libc/i386/gen sigsetjmp.S Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified: lib/libc/i386/gen sigsetjmp.S > Log: > Fix a bug caused by the collision of a local assembler label with another > use of the same label in a recently-introduced PIC_PROLOGUE. This > should solve the recent core dumps from pdksh. In the kernel I used the convention that macros use local labels from 9: down while normal code uses local labels from 1: up. DEFS.h follows this convention but SYS.h doesn't (didn't?). I hate local labels. Bruce