[net.bugs.4bsd] Asm

arwhite@watmath.UUCP (Alex White) (01/24/84)

Subject: Segmentation violation due to junk user interrupt stack
Index:	sys/vax/machdep.c 4.2BSD

Description:
	stupid asm() botch.
Repeat-By:
	Don't bother, not worth it.
Fix:
	sigcleanup() has in #ifndef lint around an asm("prober") which
	follows an if statement, and, as is well known, the label gets
	emited by the C compiler in the wrong place; there are certainly
	other places in the code which carefully have the following
	line in front of that #ifndef lint, place it here as well:
		;		/* Avoid asm() label botch */