Modify splraise() to allow better optimization.

This commit is contained in:
mycroft 1996-01-07 02:40:44 +00:00
parent 946507cf4d
commit 41f463bf2c
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: psl.h,v 1.23 1996/01/07 02:08:28 mycroft Exp $ */
/* $NetBSD: psl.h,v 1.24 1996/01/07 02:40:44 mycroft Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -110,7 +110,7 @@ splraise(ncpl)
register int ncpl;
{
register int ocpl = cpl;
cpl |= ncpl;
cpl = ocpl | ncpl;
return (ocpl);
}